Re: [Pyparsing] Anchoring py.Regex
Brought to you by:
ptmcg
From: thomas_h <th...@gm...> - 2011-09-17 19:02:58
|
Sorry, I botched these two examples. They should read: > py.Regex(r'^\s*B', re.M).searchString('foo\nB') and > py.Regex(r'^\s*B', re.M).searchString('foo\n B') (I wanted to get away from the '*' special character). Thomas |