Phil Viton Posted January 27, 2011 Posted January 27, 2011 Is it possible to use an escape in the replacement text of a RegExpReplace, and if so, how? I can do it in Perl, but with autoit, if I try to replace the string "this that" with "this", then a newline, then "that" , ie "this \n that" what I get is "this n that". Thanks!
GEOSoft Posted January 27, 2011 Posted January 27, 2011 (edited) For your example this will work but it would fail on longer strings. At least it gives you the idea.$sString = "This That" $sString = StringRegExpReplace($sString, "(\w+)\h*(\w+)", "$1" & @CRLF & "$2") MsgBox(0, "Result", $sString)If you just wanted to replace horizontal spaces with a new line character then this will work better.$sString = "This That and something else." $sString = StringRegExpReplace($sString, "\h+", @LF) MsgBox(0, "Result", $sString)You can use the PCRE Toolkit in my signature to play with various expressions but because it will read the replace string as a literal I just place a character like ^ where I want it to put the @CRLF and then replace that with the actual macro in my code as shown in both examples above.EDIT: In case you are trying to use the literal "\n" then you have to escape the \ so it will be \\n. Edited January 27, 2011 by GEOSoft George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now