Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个字符串
$string = "example.com/TARGET/noneed/noneed/noooo";
如何使用 preg_match 获取 TARGET 以从第一个“/”开始查找到第二个“/”并忽略后面的任何内容
是的,它有点小问题,对不起,但我对正则表达式不太好
使用这个正则表达式:
"#/(.*?)/#"
这将找到第一个/然后匹配最少的可能,直到找到第二个/。
/
在线查看它:ideone