这是我的 if 语句,它将从源代码中获取这个示例 href:
href="/toronto/2013/05/14/the-airborne-toxic-event/4296/"
从源代码
if ($text=preg_match('/href="([^"]*)"/', $text, $matches))
{
$output=$matches[1];
return $output;
}
并返回
/toronto/2013/05/14/the-airborne-toxic-event/4296/
我正在尝试在没有"/toronto"
或的情况下返回该网址"/toronto/"
(我不确定我需要哪个)
如果您能向我展示可以做到这一点的正则表达式,我将非常感激。谢谢