regex matching expression notepad++ -


this question exact duplicate of:

i having trouble regex using notepad++:

for single word following equal sign (=), place follows equal sign in quotes. eg: a = bcd becomes a = "bcd"

this have giving me problems:

s/=\([^" >][^ >]*\)/="\1"/g 

* using regex search through word document in notepad++

try this:

search: (=\s*)(\w+\b)
replace: $1"$2"


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -