Steps to reproduce:
1) Create a text file, "test.txt", with the following content:
Code: Select all
The quick brown fox jumped over the 123 lazy dogs.
Code: Select all
Engine: PCRE2
Code: Select all
Reg Ex: ([0-9]+)
Replace: \1\1
Expected output in the Preview window after clicking "Replace":
Code: Select all
X:\test.txt
2 123123 lazy dogs.
Code: Select all
X:\test.txt
2 123123123123 lazy dogs.
Code: Select all
The quick brown fox jumped over the 123123 lazy dogs.