Skip to content

Instantly share code, notes, and snippets.

@Per48edjes
Created July 2, 2020 11:52
Show Gist options
  • Save Per48edjes/3683bbb3e485f9723a58051af100e59a to your computer and use it in GitHub Desktop.
Save Per48edjes/3683bbb3e485f9723a58051af100e59a to your computer and use it in GitHub Desktop.
Multiple substring search among list of strings
def substring_list_match(string_list, substr_list):
return [target_str for target_str in string_list if any(search_str in target_str for search_str in substr_list)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment