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

Winapi c++: DialogBox hangs when breaking a loop -

vb.net - Font adding using PDFsharp -

javascript - jQuery iScroll clickable list elements while retaining scroll? -