Code: Select all
^te(s|x)t
Code: Select all
regex:^te(s|x)t
Why is that?
BTW: a search for ^te[sx]t will give me the expected results in both situations.
Code: Select all
^te(s|x)t
Code: Select all
regex:^te(s|x)t
Code: Select all
regex:^te(s"|"x)t
Ah , yes, of course!ovg wrote:You should escape | with ":
viewtopic.php?f=5&t=6178&p=18362&hilit=escape#p18362Code: Select all
regex:^te(s"|"x)t
viewtopic.php?f=5&t=6497&p=20047&hilit=escape#p20047