I am really having trouble with regex using notepad++:
For any single word following an equal sign (=), place what follows the equal sign in quotes.
eg: a = bcd
becomes a = "bcd"
This is what I have but it is giving me problems:
s/=\([^" >][^ >]*\)/="\1"/g
* I am using the regex to search through a word document in Notepad++