Thread
:
Why does string (UK) appear twice? (Search&Replace)
View Single Post
11-16-2023, 08:59 PM
#
8
capink
Wizard
Posts: 1,197
Karma: 1995558
Join Date: Aug 2015
Device: Kindle
Instead of: Mode: Append to field | use: Mode: Replace field
Now use back-referencing to include the original text
Code:
search: (?s)(.+) replace:
\1
\n
Some random text you want to insert
\1
: reference for the matched part i.e (.+)
\n
: new line
capink
View Public Profile
Find More Posts by capink
Track Posts by capink via RSS