Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 7 down vote accepted

Use the lazy star match .*? like this:

/(feed=http.*?widget_standard)/i
share|improve this answer
thanks a lot, this fixed it – stephenmurdoch Sep 22 '11 at 4:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.