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
Post a Comment