Regexp does not work as expected!

A place to try and solve your RegEx problems.
Post Reply
User avatar
longtalker

Regexp does not work as expected!

Post by longtalker »

Hello,

I have lins that end with the letter A preceded by a tab. I want to replace the letter A with a different text ("XXX")

I tried searching for the following regexp:

\tA\r\n

and replacing with:

\tXXX\r\n

But that does nothing (no replacement is made). I also tried without the \t and \r\n, but that didn't work either.

Can anyone help? Thanks!
User avatar
longtalker

Re: Regexp does not work as expected!

Post by longtalker »

Found out why - was not in the Replace tab but in the Find tab of the tester! Thanks anyway
Post Reply