php Regex让一切都取决于角色,如果角色存在,直到最后

时间:2019-07-19 22:40:45

标签: php regex preg-match

我有一个字符串

/one/two/three/four?five=six/seven

如果有one/two/three/four,我想从中得到?

我设法使用此正则表达式获取了one to seven

one/two/three/four

但是,如果我从字符串中删除preg_match('\/.+?(?=\?)', $str, $output); ,我什么也没得到。如果我移除?,直到字符串的?尽头,我该怎么做?

谢谢!

0 个答案:

没有答案