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.

My regex pattern looks something like

<xxxx location="file path/level1/level2" xxxx some="xxx">

I am only interested in the part in quotes assigned to location. Shouldn't it be as easy as below without the greedy switch?

/.*location="(.*)".*/

Does not seem to work.

share|improve this question
What's your source, is it HTML or xml or something? – Oskar Kjellin Mar 23 '10 at 20:39
8  
Why is this a community wiki? It's a real question. Too late now. – Ahmad Mageed Mar 23 '10 at 20:41
@Kurresmack It is XML. – publicRavi Mar 23 '10 at 20:41
What language are you writing in? Please don't use regex for XML. There are so many better ways to parse XML – Oskar Kjellin Mar 23 '10 at 20:42
1  
Not if all you want is to scan for simple attributes. Regex is appropriate and faster. – mrjoltcola Mar 23 '10 at 20:44
show 3 more comments

4 Answers

up vote 45 down vote accepted

You need to make your regular expression non-greedy, because by default, "(.*)" will match all of "file path/level1/level2" xxx some="xxx".

Instead you can make your dot-star non-greedy, which will make it match as few characters as possible:

/location="(.*?)"/

Adding a ? on a quantifier (?, * or +) makes it non-greedy.

share|improve this answer
2  
FWIW, incase your using VIM, this regex needs to be a little different: instead of .*? it's .\{-} for a non-greedy match. – SooDesuNe Mar 24 '11 at 0:21
FIY, you saved my evening. Thank you! – NiKo Jan 24 '12 at 22:17
I've been searching it for ages... this question mark! – Kirill Kulakov Apr 23 at 18:08

location="(.*)" will match from the " after location= until the " after some="xxx unless you make it non-greedy. So you either need .*? (i.e. make it non-greedy) or better replace .* with [^"]*.

share|improve this answer
+1, [^"]*" is clearer than .*?" any day – Kip Mar 23 '10 at 20:47
1  
[^"]* is also probably faster with most regex engines because it does not need to lookup the pattern after the current pattern. – Jean Vincent Jul 21 '12 at 10:34

Use non-greedy matching, if your engine supports it. Add the ? inside the capture.

/location="(.*?)"/
share|improve this answer

How about

.*location="([^"]*)".*

This avoids the unlimited search with .* and will match exactly to the first quote.

share|improve this answer

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.