Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!bcyclone03.am1.xlned.com!bcyclone03.am1.xlned.com!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'else:': 0.03; '"no"': 0.07; 'false.': 0.07; '-1,': 0.09; 'python:': 0.09; 'index': 0.13; '"hello': 0.16; 'cool.': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message- id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'subject:Parser': 0.16; 'wrote:': 0.16; 'found,': 0.18; 'header :In-Reply-To:1': 0.24; 'example': 0.25; 'header:User-Agent:1': 0.26; 'skip:" 20': 0.26; 'found.': 0.27; '"yes"': 0.29; 'flying': 0.29; 'print': 0.31; 'true.': 0.33; 'to:addr:python-list': 0.35; 'subject:: ': 0.37; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'subject:needed.': 0.91 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=JOrGyJ+b c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=QrohdLjRRo4A:10 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=3UgpsJEz42pRsWPrinkA:9 a=QEXdDO2ut3YA:10 a=HQ4thAdX7BMA:10 a=mbmGHO2frJIA:10 a=aO3Z7stzdZUA:10 X-AUTH: mrabarnett@:2500 Date: Tue, 02 Jun 2015 17:43:05 +0100 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Parser needed. References: <949ff$556cf8e0$5419aafe$20874@news.ziggo.nl> <9c6eb$556d2fa6$5419aafe$8770@news.ziggo.nl> <81e68$556d3120$5419aafe$9437@news.ziggo.nl> In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1433263397 news.xs4all.nl 2922 [2001:888:2000:d::a6]:44515 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 3310 X-Received-Body-CRC: 1920424641 Xref: csiph.com comp.lang.python:91859 On 2015-06-02 05:45, Skybuck Flying wrote: > Example for python: > > MyString = "Hello World" > > print MyString.rfind("World") > if MyString.rfind("World"): > print "yes" > else: > print "no" > > Pretty cool. > .rfind returns the index if found, -1 if not found. "World".rfind("World") returns 0, which will be treated as false. "foo".rfind("World") returns -1, which will be treated as true.