Hello @W-C
when having
Search for: $
Replace with: "
and
Search for: ^
Replace with: "
then it should have worked but not with the dot char added and with the restriction gerdb42 mentioned.
You can also use a single regex, something like
Search for: ^(.+)$
Replace with: "\1"
Search for explained:
^ = from the beginning of the line
(.+) = looking for atleast one but as much as possible chars and return the match until
$ = end of line is reached
Replace with explained:
" = insert a double quote followed by the
\1 = matched result and
" = add an additional double quote
Cheers
Claudia