show/hide this revision's text 3 added 312 characters in body

here:

// matches "test=, test"
(\S+?)=

or

// matches "test=, test" too
(\S[^=]+)=

difference being,

you should consider using the second version 2 is more efficientover the first. ? matches will backtrack through given your regex. if it's just that string you won't notice much of a difference "test=this=that=more text follows", version 1 will match test=this=that= then continue parsing to the end of coursethe string. it will then backtrack, but for longer regex'es (multiline, full documentsand find test=this=, etc...) continue to backtrack, and find test=, continue to backtrack, and settle on test= as it's final answer.

version 2 is probably betterwill match test= then stop. you can see the efficiency gains in larger searches like multi-line or whole document matches.

show/hide this revision's text 2 added 332 characters in body

here:

// matches "test=, test"
((\S+?)=)
\S+?)=

or

// matches "test=, test" too
(\S[^=]+)=

difference being, version 2 is more efficient. ? matches will backtrack through your regex. if it's just that string you won't notice much of a difference of course, but for longer regex'es (multiline, full documents, etc...) version 2 is probably better.

show/hide this revision's text 1

here:

((\S+?)=)