Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a string.contains or string.indexof method in Python.

I want to do:

if not somestring.contains("blah"):
   continue
share|improve this question

4 Answers

You can use the in operator:

if not "blah" in somestring: continue
share|improve this answer
   
This doesn't seem to work in Python 3.1 -- is there another way? – Casey Aug 9 '10 at 3:24
1  
@Casey It works in 3.1; what error are you getting? – Michael Mrozek Aug 9 '10 at 4:07
2  
@Casey, Michael, Alex, It doesn't work in Python3.1 if you are mixing byte and str types. Perhaps that is the problem – gnibbler Aug 9 '10 at 4:45
1  
In my case this didn't work because I was searching a string for newline characters. Turns out that in 3.1 you must use the code -- if r"\n" in somestring -- I didn't post a new question because I wasn't if what I was experiencing was exclusive to Python 3.1 (At the time I hadn't installed 2.7 yet) – Casey Aug 9 '10 at 5:42
2  
@Casey If "\n" in "foo\nbar" works fine for me in 3.1, but I guess as long as you fixed your problem it doesn't matter – Michael Mrozek Aug 9 '10 at 14:03
show 4 more comments

If it's just a substring search you can use string.find("substring")

You do have to be a little careful with find, index, and in though, as they are substring searches. In other words, this:

s = "This be a string"
if s.find("is") == -1:
    print "No 'is' here!"
else:
    print "Found 'is' in the string."

Would print Found 'is' in the string. Similarly, if "is" in s: would evaluate to True. This may or may not be what you want.

share|improve this answer
6  
+1 for highlighting the gotchas involved in substring searches. the obvious solution is if ' is ' in s: which will return False as is (probably) expected. – aaronasterling Aug 9 '10 at 3:22
Thanks! the if "s" in s: really worked like a charm. – asgs Apr 7 '12 at 1:29
3  
@aaronasterling Obvious it may be, but not entirely correct. What if you have punctuation or it's at the start or end? What about capitalisation? Better would be a case insensitive regex search for \bis\b (word boundaries). – Bob Nov 8 '12 at 0:07

if needle in haystack: is the normal use, as @Michael says -- it relies on the in operator, more readable and faster than a method call.

If you truly need a method instead of an operator (e.g. to do some weird key= for a very peculiar sort...?), that would be 'haystack'.__contains__. But since your example is for use in an if, I guess you don't really mean what you say;-). It's not good form (nor readable, nor efficient) to use special methods directly -- they're meant to be used, instead, through the operators and builtins that delegate to them.

share|improve this answer

Another way to find whether string contains few characters or not with the Boolean return value (i.e. True or `False)

str1 = "This be a string"
find_this = "tr"
if find_this in str1:
    print find_this, " is been found in ", str1
else:
    print find_this, " is not found in ", str1
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.