C
Chance Hopkins
I'm trying to match a set of matches after some initial text:
mytext: "something" "somethingelse" "another thing"
"maybe another"
(?:mytext: )(?<mymatch>["]{1,1}[^"]+["]{1,1}[\s| ]+)+
I only get the last one "maybe another". I want to get all the values with
quotes as a group, hence the + after the ()'s.
Is this possible?
mytext: "something" "somethingelse" "another thing"
"maybe another"
(?:mytext: )(?<mymatch>["]{1,1}[^"]+["]{1,1}[\s| ]+)+
I only get the last one "maybe another". I want to get all the values with
quotes as a group, hence the + after the ()'s.
Is this possible?