If I have the text:
test: firstString, blah: anotherString, blah:lastString
How can I get the text "firstString"
My regex is:
test:(.*),
EDIT
Which brings back firstString, blah: anotherString,
but I only need to bring back the text 'firstString'?