I want to parse this json and pull out everything that appears between the first occurrence of the word feed and the first instance of the word widget_standard.
I figure that this should be easy enough but my regex actually matches everything between the first occurrence of feed and the second occurrence of widget_standard.
What do I have to do to my regex /(feed=http.*widget_standard)/i to only match up to (and including) the end of the first occurrence of the word widget_standard?
Use the lazy star match
.*?like this: