Hi,
Is multiline mode supported in regex? I tried (?s) and (?m) before the regex, but did not get the expected result.
What I want to do is search a logfile for a text like this:
UPDATE MDS_KAART
SET NAAM = 'non-seminoma testis',
where the text after NAAM is of a specific length. Lines are separated by 0x0d 0x0a (Windows like).
My regex was: (?m)UPDATE MDS_KAART\nSET
regex multiline mode
Moderator: vuser
-
- Site Admin
- Posts: 287
- Joined: Fri Apr 30, 2010 5:50 pm
Re: regex multiline mode
No, unfortunately it is not - and I have no plans on implementing it in the near futureIs multiline mode supported in regex?
Charles.