Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #73966
| Date | 2014-07-04 16:57 +0100 |
|---|---|
| From | MRAB <python@mrabarnett.plus.com> |
| Subject | Re: Why is regexp not working? |
| References | <lp66j1$68k$1@ger.gmane.org> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.11500.1404489628.18130.python-list@python.org> (permalink) |
On 2014-07-04 13:27, Florian Lindner wrote:
> Hello,
>
> I have that piece of code:
>
> def _split_block(self, block):
> cre = [re.compile(r, flags = re.MULTILINE) for r in self.regexps]
> block = "".join(block)
> print(block)
> print("-------------------")
> for regexp in cre:
> match = regexp.match(block)
> for grp in regexp.groupindex:
> data = match.group(grp) if match else None
> self.data[grp].append(data)
>
>
> block is a list of strings, terminated by \n. self.regexps:
>
>
> self.regexps = [r"it (?P<coupling_iterations>\d+) .* dt complete yes |
> write-iteration-checkpoint |",
> r"it (?P<it_read_ahead>\d+) read ahead"
>
>
> If I run my program it looks like that:
>
>
> it 1 ahadf dt complete yes | write-iteration-checkpoint |
> Timestep completed
>
> -------------------
> it 1 read ahead
> it 2 ahgsaf dt complete yes | write-iteration-checkpoint |
> Timestep completed
>
> -------------------
> it 4 read ahead
> it 3 dfdsag dt complete yes | write-iteration-checkpoint |
> Timestep completed
>
> -------------------
> it 9 read ahead
> it 4 dsfdd dt complete yes | write-iteration-checkpoint |
> Timestep completed
>
> -------------------
> it 16 read ahead
> -------------------
> {'it_read_ahead': [None, '1', '4', '9', '16'], 'coupling_iterations': ['1',
> None, None, None, None]}
>
> it_read_ahead is always matched when it should (all blocks but the first).
> But why is the regexp containing coupling_iterations only matched in the
> first block?
>
> I tried different combinations using re.match vs. re.search and with or
> without re.MULTILINE.
>
The character '|' is a metacharacter that separates alternatives. For
example, the regex 'a|b' will match 'a' or b'.
Your regexes end with '|', which means that they will match an empty
string at the start of the target string.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Why is regexp not working? MRAB <python@mrabarnett.plus.com> - 2014-07-04 16:57 +0100
csiph-web