I have the following Literal Text
"value":"1001174227","fieldLabel":"A field"},{"value":"THE VALUE I NEED","fieldLabel":"Period"}
My goal was to use regular expressions to extract the string
THE VALUE I NEED
I attempted to match using the regular expression using the standard start and end identifiers by pulling the text in the middle (see my regex below) but it pulls out the whole string. I think this is because of the reoccurring text value.
\"value\":\"(.*)\",\"fieldLabel\":\"Period\"