How to check if a string contains an element from a list in Python

411,100

Solution 1

Use a generator together with any, which short-circuits on the first True:

if any(ext in url_string for ext in extensionsToCheck):
    print(url_string)

EDIT: I see this answer has been accepted by OP. Though my solution may be "good enough" solution to his particular problem, and is a good general way to check if any strings in a list are found in another string, keep in mind that this is all that this solution does. It does not care WHERE the string is found e.g. in the ending of the string. If this is important, as is often the case with urls, you should look to the answer of @Wladimir Palant, or you risk getting false positives.

Solution 2

extensionsToCheck = ('.pdf', '.doc', '.xls')

'test.doc'.endswith(extensionsToCheck)   # returns True

'test.jpg'.endswith(extensionsToCheck)   # returns False

Solution 3

It is better to parse the URL properly - this way you can handle http://.../file.doc?foo and http://.../foo.doc/file.exe correctly.

from urlparse import urlparse
import os
path = urlparse(url_string).path
ext = os.path.splitext(path)[1]
if ext in extensionsToCheck:
  print(url_string)

Solution 4

Just in case if anyone will face this task again, here is another solution:

extensionsToCheck = ['.pdf', '.doc', '.xls']
url_string = 'file.doc'
res = [ele for ele in extensionsToCheck if(ele in url_string)]
print(bool(res))
> True

Solution 5

Use list comprehensions if you want a single line solution. The following code returns a list containing the url_string when it has the extensions .doc, .pdf and .xls or returns empty list when it doesn't contain the extension.

print [url_string for extension in extensionsToCheck if(extension in url_string)]

NOTE: This is only to check if it contains or not and is not useful when one wants to extract the exact word matching the extensions.

Share:
411,100
tkit
Author by

tkit

...I put on my robe and a wizard hat...

Updated on April 13, 2021

Comments

  • tkit
    tkit about 3 years

    I have something like this:

    extensionsToCheck = ['.pdf', '.doc', '.xls']
    
    for extension in extensionsToCheck:
        if extension in url_string:
            print(url_string)
    

    I am wondering what would be the more elegant way to do this in Python (without using the for loop)? I was thinking of something like this (like from C/C++), but it didn't work:

    if ('.pdf' or '.doc' or '.xls') in url_string:
        print(url_string)
    

    Edit: I'm kinda forced to explain how this is different to the question below which is marked as potential duplicate (so it doesn't get closed I guess).

    The difference is, I wanted to check if a string is part of some list of strings whereas the other question is checking whether a string from a list of strings is a substring of another string. Similar, but not quite the same and semantics matter when you're looking for an answer online IMHO. These two questions are actually looking to solve the opposite problem of one another. The solution for both turns out to be the same though.

  • tkit
    tkit almost 13 years
    this was exactly what I was looking for. in my case it does not matter where in the string is the extension. thanks
  • AXE Labs
    AXE Labs almost 10 years
    Great suggestion. Using this example, this is how I check if any of the arguments matche the well known help flags: any([x.lower() in ['-?','-h','--help', '/h'] for x in sys.argv[1:]])
  • Lauritz V. Thaulow
    Lauritz V. Thaulow almost 10 years
    @AXE-Labs using list comprehensions inside any will negate some of the possible gains that short circuiting provides, because the whole list will have to be built in every case. If you use the expression without square brackets (any(x.lower() in ['-?','-h','--help', '/h'] for x in sys.argv[1:])), the x.lower() in [...] part will only be evaluated until a True value is found.
  • Peter
    Peter almost 9 years
    And if I want to know what ext is when any() returns True?
  • Dmitry Verhoturov
    Dmitry Verhoturov over 7 years
    This is more readable than any solution, it's one of the best possible solutions for that question in my opinion.
  • Dannid
    Dannid over 7 years
    @PeterSenna: any() will only return true or false, but see @psun 's list comprehension answer below with this modification: print [extension for extension in extensionsToCheck if(extension in url_string)]
  • Dannid
    Dannid over 7 years
    this one is clever - I didn't know tuples could do that!, but it only works when your substring is anchored to one end of the string.
  • Dannid
    Dannid over 7 years
    This one is superior to the any() solution in my opinion because it can be altered to return the specific matching value as well, like so: print [extension for extension in extensionsToCheck if(extension in url_string)] (see my answer for additional details and how to extract the matching word as well as the pattern from the url_string)
  • BrDaHa
    BrDaHa over 7 years
    Way cool. I just wish there was something like "contains" rather than just startswith or endswith
  • Shekhar Samanta
    Shekhar Samanta about 6 years
    @BrDaHa you can use 'in' for contains . if 'string' in list:
  • BrDaHa
    BrDaHa about 6 years
    @ShekharSamanta sure, but that doesn’t solve the problem of checking if one of multiple things is in a string, which is that the original question was about.
  • Shekhar Samanta
    Shekhar Samanta about 6 years
    Yes in that case we can use : if any(element in string.split('any delmiter') for element in list) & for string if any(element in string for element in list)
  • Bruno Ambrozio
    Bruno Ambrozio about 4 years
    Given the accepted answer, how do I also print the variable "ext"? I have tried: ``` url_string = "testing.doc.aee" extensionsToCheck = ['.pdf', '.doc', '.xls'] if any(ext in url_string for ext in extensionsToCheck): print(f"{ext} - {url_string}") ``` but no success.
  • Amal Thachappilly
    Amal Thachappilly over 3 years
    @LauritzV.Thaulow can we get the element ?
  • Vraj Kotwala
    Vraj Kotwala over 2 years
    Thanks. What to do if I want to check from a list and ignore the case. (with both caps and small)
  • user2382321
    user2382321 almost 2 years
    Hi @Dannid. When I tried your solution I get a syntax error pointing to the "for". Maybe there has been an update in python that requires some different syntax here since your post? Hope you can help me. Thanks