***
terence.parker@gmail.com escribió/wrote (18 Aug 2006 18:46:28 -0700):
Quote:
I wish to grab the data "This is a title" and "Fred" against their
corresponding headings in an array (e.g. $array[title] = "This is a
title") .... but the key doesn't matter, that need not come from the
regexp but I can do manually.
>
The question is - how do I do this in one pass?
I'm unsure about your exact needs, but I hope this code helps:
$text='<b>Title:</b<em>This is a title</em>
<b>Name:</b<em>Fred</em>';
if(preg_match_all('@<b>(.*)</b>.*<em>(.*)</em>@Ui', $text, $matches)>0){
print_r($matches);
}
This prints:
Array
(
[0] =Array
(
[0] =<b>Title:</b<em>This is a title</em>
[1] =<b>Name:</b<em>Fred</em>
)
[1] =Array
(
[0] =Title:
[1] =Name:
)
[2] =Array
(
[0] =This is a title
[1] =Fred
)
)
If keys don't matter, must ignore them: '@<b>.*</b>.*<em>(.*)</em>@Ui'
--
-+
http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
++ Mi sitio sobre programación web:
http://bits.demogracia.com
+- Mi web de humor con rayos UVA:
http://www.demogracia.com
--