Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Mark Lawrence Newsgroups: comp.lang.python Subject: Re: Newbie: Check first two non-whitespace characters Date: Thu, 31 Dec 2015 23:25:52 +0000 Lines: 39 Message-ID: References: <240ab049-68a0-4a00-b911-d58cae9bfbcf@googlegroups.com> <568579DF.50805@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de TKM/6u3nIBhcSX1KtTeT8wiTC7hsJcOyEo6CRsSKJdhw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'ideally': 0.04; 'from:addr:yahoo.co.uk': 0.05; 'subject:two': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:characters': 0.09; 'forward:': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'subject:non': 0.16; 'wrote:': 0.16; 'string': 0.17; 'language': 0.19; '>>>': 0.20; 'doc': 0.22; 'lawrence': 0.22; 'import': 0.24; 'header:In-Reply-To:1': 0.24; "i've": 0.25; 'header:User-Agent:1': 0.26; '(which': 0.26; 'header:X-Complaints-To:1': 0.26; 'be:': 0.29; 'depth': 0.29; 'pile': 0.29; 'print': 0.30; 'language.': 0.32; 'could': 0.35; 'something': 0.35; 'but': 0.36; 'should': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'list.': 0.37; 'subject:-': 0.39; 'to:addr:python.org': 0.40; 'mark': 0.40; 'space': 0.40; 'ever': 0.60; 'your': 0.60; "you'll": 0.61; 'hope': 0.61; 'email addr:gmail.com': 0.62; 'charset:windows-1252': 0.62; 'our': 0.64; 'pythonistas,': 0.84; 'seen.': 0.84; 'subject:Check': 0.95 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: ip13.worldwideprinting.adsl.gxn.net User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0 In-Reply-To: <568579DF.50805@gmail.com> 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: , Xref: csiph.com comp.lang.python:101084 On 31/12/2015 18:54, Karim wrote: > > > On 31/12/2015 19:18, otaksoftspamtrap@gmail.com wrote: >> I need to check a string over which I have no control for the first 2 >> non-white space characters (which should be '[{'). >> >> The string would ideally be: '[{...' but could also be something like >> ' [ { ....'. >> >> Best to use re and how? Something else? > > Use pyparsing it is straight forward: > > >>> from pyparsing import Suppress, restOfLine > > >>> mystring = Suppress('[') + Suppress('{') + restOfLine > > >>> result = mystring.parse(' [ { .... I am learning pyparsing' ) > > >>> print result.asList() > > ['.... I am learning pyparsing'] > > You'll get your string inside the list. > > Hope this help see pyparsing doc for in depth study. > > Karim Congratulations for writing up one of the most overengineered pile of cobblers I've ever seen. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence