Page 1 of 1

regex multiline mode

Posted: Mon Jan 03, 2011 3:13 am
by ctammes
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

Re: regex multiline mode

Posted: Mon Jan 03, 2011 4:39 am
by FileViewer
Is multiline mode supported in regex?

No, unfortunately it is not - and I have no plans on implementing it in the near future :(

Charles.