问题描述
|
我有以下三种类型的url,但我只需要粗体。如何使大胆的人写在PHP中的正则表达式?
页面,首页
页面,Members.EditProfile
页面,Members.Seller.Watchlist
完整网址的类型:
http://localhost.example:8090 / index.PHP / page,Members.InBox
解决方法
/.*[,.](.*?)$/
呢?
用法示例:
$output = preg_match(\'/.*[,.](.*?)$/\',$inputValue,$matches);
echo $matches[1];
, 沿途
[A-Za-z]+$
这是一个实时版本(尽管它是为ruby量身定制的,但我发现它通常对正则表达式调试很有帮助):
http://rubular.com/r/v32oFOiRdo
, $part = preg_split(\'/[,\\.]/\',$url);
echo $part[count($part)-1];
, 我是正则表达式的新手,但我很渴望。这是我得到的:
\\b(?:.+\\.|,)+(.+)\\b
这应捕获第1组中的粗体字。
希望这会有所帮助,埃尔。
, 给定一个用逗号,句点或两者混合分隔的列表,这会将最后一个字段放在\\ 1反向引用中。
^.*?(?:(?:\\.|,).*)*(?:\\.|,)(.*?)$
http://rubular.com/r/ewBbSVIeZ6