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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -