Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My regex is not working properly. I'm showing you before regex text and after regex text. I'm using this regex re.search(r'(?ms).*?{{(Infobox film.*?)}}', text). You will see my regex not displaying the result after | country = Assam, {{IND . My regex stuck at this point. Will you please help me ? thanks

Before regex:

    
{{Infobox film
| name           = Papori
| released       = 1986
| runtime        = 144 minutes
| country        = Assam, {{IND}}
| language       = [[Assamese language|Assamese]]
| budget         = 
| followed by    = free
}}

After regex:

    
{Infobox film
| name           = Papori
| released       = 1986
| runtime        = 144 minutes
| country        = Assam, {{IND

Why regex stuck at this point? country = Assam, {{IND

Edit : Expecting Result

Infobox film
    | name           = Papori
    | released       = 1986
    | runtime        = 144 minutes
    | country        = Assam, {{IND}}
    | language       = [[Assamese language|Assamese]]
    | budget         = 
    | followed by    = free
share|improve this question
What is the result you are expecting and why? – Johnsyweb Nov 6 '11 at 19:17
@Johnsyweb Updated – no_freedom Nov 6 '11 at 19:20

1 Answer

up vote 3 down vote accepted

Your regex is catching everything between the first {{ and the first }}, which is in the "country" entry of the infobox. If you want everything between the first {{ and the last }}, then you want to make the .* inside the braces greedy by removing the ?:

re.search(r'(?ms).*?{{(Infobox film.*)}}', text)

Note that this will find the last }} in the input (eg. if there's another template far below the end of the infobox, it will find the end of that), so this may not be what you want. When you have nesting things like this, regex is not always the best way to search.

share|improve this answer
this is probably a dumb question, but what does (?ms) mean? – aleph_null Nov 6 '11 at 19:27
I'm afraid I don't know in that context. Usually it means that the previous element (letter or group) is there either 0 or 1 time (i.e. is optional). After a * it means that the * is non-greedy, and if it was (?:ms) it would mean that this group should not be captured. But without the : I'm not sure what it means, or if it's just a typo. – Graeme Perrow Nov 6 '11 at 19:31
@Graeme Perrow thanks for info. So is it better to use film.*?. Is it possible to replace this text | country = Assam, {{IND}} to | country = Assam, IND? – no_freedom Nov 6 '11 at 19:32
3  
@aleph_null: prob = 1.0 ... it's the inline equivalent of the flags re.M + re.S aka re.MULTILINE + re.DOTALL; see docs – John Machin Nov 6 '11 at 19:37
1  
Did you mean, "make the .* inside the braces greedy by removing the ?" (emphasis mine)? – todofixthis Nov 6 '11 at 20:00
show 3 more comments

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.