Searching for a piece of string
Ant
antroy at gmail.com
Thu May 3 03:45:10 EDT 2007
On May 3, 8:35 am, saif.shak... at gmail.com wrote:
> Hi,
> How can i match a part of string and branch to some part of code.
> Ex If there is a string like "Timeout" and i want to search only
> whether the word "Time" is present in it(which is valid in this
> case).so if i have "CastinTime",still this should hold.
> I need to use this in a "if" statement and code.Can someone help me
> in this.
> Thanks .
if "Time" in text:
# do stuff.
More information about the Python-list
mailing list