Bug in RegEx?
Posted: Fri Sep 27, 2019 8:35 pm
Hello,
I have th following code:
Can't figure out why PB takes exception to this... isn't this pretty standard RegEx? This is my error msg:
I am running v5.62. Any ideas?
Thanks!
I have th following code:
Code: Select all
RegEx.s = "(?<=\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"
CreateRegularExpression(0, RegEx.s)
RegExResult.s = ReplaceRegularExpression(0, "192.178.168.51;PC;User", "---")
Debug RegExResult.s
Code: Select all
[ERROR] The specified #RegularExpression is not initialised.
Thanks!