Jump to content

matching spanned lines with RegEx


Recommended Posts

Is there a way to tell AutoIt to let .* match characters that span multiple lines?

For example:

$sTheData = "<tag1>" & @CRLF & _
        "<tag2>" & @CRLF & _
        "# some stuff here" & @CRLF & _
        "</tag2>" & @CRLF & _
        "<tag3>" & @CRLF & _
        "# some more stuff here" & @CRLF & _
        "</tag3>" & @CRLF & _
        "</tag1>"
MsgBox(0,"Regular Expressions Test", StringRegExpReplace( $sTheData, "<tag2>.*</tag2>", ""))

This should strip out tag2 and all of its contents. But, since <tag2> and </tag2> are not on the same line, this does not work, because the .* stops matching at the CR or LF characters.

Any suggestions?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...