j
k
j a
j l
regex eParam("(.)=(\"?.*\"?)", regex::normal | regbase::icase);
The .* is greedy so it gobbles up all remaining input including spaces and quotes. How about: (.)=((?:\"[^\"]*\")|(?:[^[:space:]]*)) John.
Back to the thread
Back to the list