$data = "My pin numbers are 1234 and 5678" $data = RegExReplace("\d*",$data,"*removed*") cancel msg=$data |
$test = "GC1234 GC12345 GC12346 " $test = RegExReplace("(GC.*? )",$test,"http://coord.info/$1" + $_CrLf,"$") msgok msg=$test |
$test = "GC1234 GC12345 GC12346 " $test = RegExReplace("GC.*? ",$test,"http://coord.info/$1" + $_CrLf,"$") msgok msg=$test |
$test = "GC1234 GC12345 GC12346 " $test = RegExReplace("(GC)(.*? )",$test,"OX$2" + $_Crlf,"$") msgok msg=$test |
$test = "GC1234 GC12345 GC12346 " $test = RegExReplace("(GC)(.*? )",$test,"OX$2" + $_Crlf) msgok msg=$test |
$test = "GC1234 GC12345 GC12346 " $test = RegExReplace("(GC)(.*? )",$test,"OX\2" + $_Crlf,"\") msgok msg=$test |
$test = "GC1234 GC12345 GC12346 " $test = RegExReplace("(GC)(.*? )",$test,"$$2BB$2" + $_Crlf,"$") msgok msg=$test |