Reputation: 12176
I have words like this in a file.
"abc
"defgh
"ijklmno
"1234
"123
I am able to find the words by using this regexp ^\".*$
I need to append another quote to the text so that the text becomes a quoted text.
How to achieve this?
Upvotes: 1
Views: 110
Reputation: 3406
If your words always start at the beginning of the line you could record a macro and run it from the beginning to the end of the file.
Otherwise you can use regular expressions:
In notepad++ v6.3.3 this worked for me:
Ctrl + F -> Replace -> Regular expression
Find: ^\".*$
Replace: $0"
Upvotes: 2