﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
760	Regular expression; NUL character in \x##	trancexx		"It's about null character in ''\x##'' pattern. Not working for that one. Example with StringRegExpReplace()

{{{
$sString = ""abc"" & Chr(1) & ""def"" & Chr(1) & ""ghi""

$sNewString = StringRegExpReplace($sString, ""\x1"", """")

ConsoleWrite(""1. "" & $sNewString & @CRLF) ; this is as expected



$sString = ""abc"" & Chr(0) & ""def"" & Chr(0) & ""ghi""

$sNewString = StringRegExpReplace($sString, ""\x0"", """") 

ConsoleWrite(""2. "" & $sNewString & @CRLF) ; this is not
}}}

Help file suggests that it should work for any ascii character (hex code).
I guess this has nothing to do with bugs, it's more like undocumented feature.
"	Bug	closed		AutoIt	3.2.12.1	None	No Bug		
