vote up 2 vote down star

Hi guys!

Help with regular expressions needed. I'm trying using regular expressions and preg_match_all find blocks <character>...</character>. Here is how my data looks like:

<character>
杜塞尔多夫
杜塞爾多夫
    <div class="hp">dùsàiěrduōfū<div class="hp">dkfjdkfj</div></div>
    <div class="tr"><span class="green"><i>г.</i></span> Duesseldorf (<i>Deutschland</i>)</div>
    <div class="tr"></div>
</character>

<character>
    我, 是谁
    <div class="hp">текст</div>
    <div class="tr">some text in different languages</div>
</character>

I tried \<character\>.*\<\/character> but unfortunately it didn't work. Any suggestions?

flag

73% accept rate
What do you mean "didn't work"? Did you get no matches or the wrong matches? – Tim Sylvester Nov 7 at 23:43
4  
Regex is a poor choice for processing XML. Use an XML parser and your task becomes trivially easy. – bobince Nov 8 at 0:08

5 Answers

vote up 3 vote down check

If using the preg family of functions, your regular expression should be:

/\<character>(.*?)\<\/character>/s

The non-greedy operator ? will prevent you from only getting one match starting from the first <character> and ending at the last </character>.The /s flag will allow your dot to match line breaks.

link|flag
< needs no escaping. – Bart K. Nov 8 at 11:11
vote up 5 vote down

Unless you're required at gunpoint to use regular expressions to do this, DOMDocument will be far more accurate.

<?php

$dom = new DOMDocument;
$dom->loadXML($data);

$character_nodes = $dom->getElementsByTagName('character');

// use $character_nodes...
?>
link|flag
even at gunpoint there's no good reason to use regexes for parsing xml, but it remains possible that the data just looks like xml, but isn't quite valid xml... – Kris Nov 8 at 0:45
1  
@Kris, I think "not getting shot" remains a good reason to do something when at gunpoint. ;) – BipedalShark Nov 8 at 1:04
+1 for giving a proper answer. There are DOM parsers for HTML, too. RegEx is a great tool... for other tasks. – TrueWill Nov 8 at 2:51
My document isn't a valid HTML, so I got a lot of errors... – Anthony Nov 8 at 12:07
Anthony, I asked a similar question before. The aim of the question was loading a not-strict XML/HTML document into DOM. Check this: stackoverflow.com/questions/1473214/… – L. Shaydariv Nov 8 at 12:59
show 1 more comment
vote up 2 vote down

Try

<character>(.*?)<\/character>

The question mark is an ungreedy qualifier, meaning it'll match a string as short as possible. Also < and > doesn't need escaping.

link|flag
I just wanted to say the same, but I have lost my sample source code that was pretty easy to find. ))) – L. Shaydariv Nov 7 at 23:46
vote up 0 vote down

You may need to use the "/u" option to correctly process UTF8 text.

http://php.net/manual/en/reference.pcre.pattern.modifiers.php

link|flag
vote up 0 vote down

You are currently doing it with greedy regexps. Use not greedy regexps instead.

link|flag

Your Answer

Get an OpenID
or

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