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.

Can anyone have a look at the php code I wrote. I want to extract the three information into an array, but it doesn't work for me.

$string = "<Name>Joh Doe <Email>joh.doe@gmail.com <App ID> 130105"
$var = preg_split("/^<.*<$/" , $string);

Thanks,

share|improve this question
oops! $var = preg_split("/^<.*<$/" , $string") – Sumit Mar 9 '12 at 12:24
You can edit your question, you know? – Јοеу Mar 9 '12 at 12:26
oh! Thanks for pointing that out! Edited! – Sumit Mar 9 '12 at 12:29

5 Answers

$string = "<Name>Joh Doe <Email>joh.doe@gmail.com <App ID> 130105";
preg_match_all('/<([^>]*)>([^<]+)/' , $string, $matches);
var_dump($matches);

Gives:

array(3) {
  [0] => array(3) {
    [0] => string(14) "Joh Doe "
    [1] => string(25) "joh.doe@gmail.com "
    [2] => string(15) " 130105"
  }
  [1] => array(3) {
    [0] => string(4) "Name"
    [1] => string(5) "Email"
    [2] => string(6) "App ID"
  }
  [2] => array(3) {
    [0] => string(8) "Joh Doe "
    [1] => string(18) "joh.doe@gmail.com "
    [2] => string(7) " 130105"
  }
}
share|improve this answer
array 0 => array empty 1 => array empty 2 => array empty is the answer I got. – Sumit Mar 9 '12 at 13:03
var_dump(matches); should of course be var_dump($matches); But copy paste example above, should work fine – Dapsy Mar 9 '12 at 14:03

Don't anchor the regex in the split, also the regex doesn't end with < but >.

$str = "<Name>Joh Doe <Email>joh.doe@gmail.com <App ID> 130105";
$arr = preg_split("/<[^>]+>/" , $str);
print_r($arr);

output:

Array
(
    [0] =>
    [1] => Joh Doe
    [2] => joh.doe@gmail.com
    [3] =>  130105
)
share|improve this answer

You could use:

$string = "<Name>Joh Doe <Email>joh.doe@gmail.com <App ID> 130105";
preg_match_all('/>\s*([^<]+)/', $string, $var);

print_r($var[1]);

Output:

Array
(
    [0] => Joh Doe 
    [1] => joh.doe@gmail.com 
    [2] => 130105
)
share|improve this answer
1  
+1, TIMTOWTDI as we say in perl :) – M42 Mar 9 '12 at 12:42
Array ( ) is what I got. Not sure what am I doing wrong :( – Sumit Mar 9 '12 at 13:06
@Sumit, show us your code. The above two lines of code work, just copy and paste. – Qtax Mar 9 '12 at 14:02
include('simplehtmldom\simple_html_dom.php'); $html = file_get_html("file:///C:/Users/Ezio/Desktop/Flat.html"); $storage = $html -> find(".ms-disc-bordered-noleft"); $k=1; while(isset($storage[$k])) { $string = strip_tags($storage[$k]); preg_match_all('/>\s*([^<]+)/', $string, $var); print_r($var[1]); $k++; } – Sumit Mar 9 '12 at 14:06
I am not sure what is going wrong. – Sumit Mar 9 '12 at 14:08
show 3 more comments

You are missing delimitters which would result in:

Warning: preg_split() [function.preg-split]: No ending delimiter

Here is what you should have:

$string = "<Name>Joh Doe <Email>joh.doe@gmail.com <App ID> 130105";
$var = preg_split("#^<.*<$#" , $string);
print_r($var);

Result:

Array
(
    [0] => Joh Doe joh.doe@gmail.com  130105
)
share|improve this answer
Thanks for your answer. Works great. What does # stand for? – Sumit Mar 9 '12 at 12:29
@Sumit: It is demilitter. Most people use / but you can also use certain other characters such as #. I use that because it appears clearly and kind of tells it is delimitter :) All regex is put inside these delimitters. – Sarfraz Mar 9 '12 at 12:29
Oh, didn't know that :) – Sumit Mar 9 '12 at 12:30
3  
How would that split do anything? It should not match. I think it's just your browser not displaying the tags. – Qtax Mar 9 '12 at 12:31
1  
Wrong result and it doesn't do anything at all except put the whole string as the first element in the array. – Qtax Mar 9 '12 at 12:40
show 4 more comments

Try this

$string = "<Name>Joh Doe <Email>joh.doe@gmail.com <App ID> 130105";
$var = preg_split("#\s*<.*?>\s*#" , $string);
print_r($var);

Outputs:

Array ( [0] => [1] => Joh Doe [2] => joh.doe@gmail.com [3] => 130105 )

The first index is empty because there is nothing before the first tag.

Update

As suggested by JRL

$var = preg_split("#\s*<.*?>\s*#" , $string, -1, PREG_SPLIT_NO_EMPTY);

output:

Array ( [0] => Joh Doe [1] => joh.doe@gmail.com [2] => 130105 )

share|improve this answer
1  
To avoid the empty index, you can use the PREG_SPLIT_NO_EMPTY tag. – JRL Mar 9 '12 at 12:36
@JRL thanks, added to my answer. – stema Mar 9 '12 at 12:43

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.