regex multiline mode

Use this forum to ask any questions and to submit bug reports

Moderator: vuser

Post Reply
ctammes
Posts: 12
Joined: Thu May 13, 2010 10:16 pm

regex multiline mode

Post 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
FileViewer
Site Admin
Posts: 287
Joined: Fri Apr 30, 2010 5:50 pm

Re: regex multiline mode

Post 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.
Post Reply