如何使用php获取标记之间的数据

时间:2013-03-29 21:45:33

标签: php regex

如果我有这样的输入<n>336197298</n>如何使用php编程获取标签之间的数字。我尝试使用正则表达式,但我找不到此任务的方法。 你能帮我吗?

3 个答案:

答案 0 :(得分:2)

我认为正则表达式最好尝试这种方法,

function get_content( $tag , $content )
{
    preg_match("/<".$tag."[^>]*>(.*?)<\/$tag>/si", $content, $matches);
    return $matches[1];
}

答案 1 :(得分:0)

假设没有标记嵌套,那么你需要的正则表达式是

n >(.*?)<

这准确地捕捉了n ><之间的内容,但它做了很多你不清楚的假设。它总是n还是其他东西?标签名称与>之间是否只有一个空格?你是否担心匹配标签?

答案 2 :(得分:0)

不要使用正则表达式。

请参阅xml_parse_into_struct

<?php
$simple = "<para><note>simple note</note></para>";
$p = xml_parser_create();
xml_parse_into_struct($p, $simple, $vals, $index);
xml_parser_free($p);
echo "Index array\n";
print_r($index);
echo "\nVals array\n";
print_r($vals);
?>

输出:

Index array
Array
(
    [PARA] => Array
        (
            [0] => 0
            [1] => 2
        )

    [NOTE] => Array
        (
            [0] => 1
        )

)

Vals array
Array
(
    [0] => Array
        (
            [tag] => PARA
            [type] => open
            [level] => 1
        )

    [1] => Array
        (
            [tag] => NOTE
            [type] => complete
            [level] => 2
            [value] => simple note
        )

    [2] => Array
        (
            [tag] => PARA
            [type] => close
            [level] => 1
        )

)