1

我想使用正则表达式提取“软件”的信息信息及其值“2”。请查看 PHP 中的以下字符串。

$str = "http://abcfastdirectory.com vs http://www.weblinkstoday.com/detail/link-116406.htm ::-(1)**abcfastdirectory(1)**allows(1)**create(1)**directories(1)**professional(1)**((1)**abcfastdirectory(1)**allows(1)**club(1)**contact(1)**create(2)**details(1)**directories(4)**directory(3)**for(3)**it(1)**our(1)**page(1)**professional(2)**software(2)**"

如何使用 PHP 中的正则表达式从上述字符串中提取信息?

4

4 回答 4

3

如果您仅在“software(2)”之后,则应执行以下操作:

preg_match('/software\((?<value>\d+)\)/', $str, $m);
print $m['value'];

但是,如果您想匹配喜欢的每个部分,<word>(<num>)可以使用以下内容:

preg_match_all('/(?<key>\w+)\((?<value>\d+)\)/i', $str, $m);
foreach ($m['key'] as $i => $key) {
     print $key.' => '.$m['value'][$i]."\n";
}
于 2012-08-03T18:44:59.067 回答
0
$software = (int)preg_replace('/.*software\((\d+)\).*/','$1',$str);
于 2012-08-03T18:44:24.427 回答
0

试试这个:

$pattern = '/\*\*software\([0-9]+\)\*\*/';
preg_match($pattern, $str, $matches);

// your value will be stored in $matches[1] 
于 2012-08-03T18:45:02.670 回答
0

你可以试试这个,看看结果是否是你要找的:

<?php

$str = "http://abcfastdirectory.com vs http://www.weblinkstoday.com/detail/link-116406.htm ::-(1)**abcfastdirectory(1)**allows(1)**create(1)**directories(1)**professional(1)**((1)**abcfastdirectory(1)**allows(1)**club(1)**contact(1)**create(2)**details(1)**directories(4)**directory(3)**for(3)**it(1)**our(1)**page(1)**professional(2)**software(2)**";

$matches = array();

preg_match_all('#\*\*(.*?)\((\d+)\)\*\*#',$str,$matches, PREG_SET_ORDER );

print_r($matches);
于 2012-08-03T19:00:04.497 回答