14

我有一个字符串:

 <div id="post_message_957119941">

我只想使用preg_match.

4

1 回答 1

28

这应该不会太难。

$str = '<div id="post_message_957119941">';

if ( preg_match ( '/post_message_([0-9]+)/', $str, $matches ) )
{
    print_r($matches);
}

输出:

Array ( [0] => post_message_957119941 [1] => 957119941 )

所以想要的结果总是在:$matches[1]

那是你需要的吗?

于 2013-03-14T12:06:20.280 回答