I have quite a large list of words in a txt file and I\'m trying to do a regex find and replace in Notepad++. I need to add a string before each line and after each line.. S
Regular Expression that can be used:
Find: \w.+ Replace: able:"$&"
As, $& will give you the string you search for.
$&
Refer: regexr