-3

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

4

3 回答 3

2

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

function get_content( $tag , $content )
{
    preg_match("/<".$tag."[^>]*>(.*?)<\/$tag>/si", $content, $matches);
    return $matches[1];
}
于 2013-03-29T21:50:05.943 回答
0

假设没有标签嵌套,您需要的正则表达式是

n >(.*?)<

这准确地捕获了 和 之间n >的内容<,但它做出了许多您不清楚的假设。它总是n还是可以是别的东西?标签名称和 ? 之间是否总是有一个空格>?您是否担心匹配标签?

于 2013-03-29T21:49:12.157 回答
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
        )

)
于 2013-03-29T22:01:56.077 回答