View Single Post
Old 11-16-2023, 08:59 PM   #8
capink
Wizard
capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.
 
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\nSome random text you want to insert
\1: reference for the matched part i.e (.+)
\n: new line
capink is offline   Reply With Quote