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.
