in reply to Re^2: Multi-line string regex and negative inline match
in thread Multi-line string regex and negative inline match
by looking at the given regex, it fails because of the header column, So you'll have to either remove the header column or account for its existence.
qr/\A.*?-(?:[^|]*\|\s*activate complete\s*\|[^\n]*\n?)*\z/ms; Mabye?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Multi-line string regex and negative inline match
by ikegami (Patriarch) on Jul 31, 2010 at 00:26 UTC | |
by ahmad (Hermit) on Jul 31, 2010 at 01:20 UTC | |
by ikegami (Patriarch) on Jul 31, 2010 at 01:47 UTC | |
|
Re^4: Multi-line string regex and negative inline match
by josh803316 (Beadle) on Jul 31, 2010 at 05:46 UTC |