如何从特定字符串到特定结束字符串的主字符串中提取特定子字符串。就像我有下面的路径
你的路径是 D:///path/to/required/directory/sample/subdirectory/a/b/abc/sample.text
从上面的路径中,我想从 to 中提取子/sample
字符串abc
。详细地
/样本/子目录/a/b/abc
我尝试了其他子字符串函数,但没有成功。
有人可以帮我吗?
我曾尝试使用 php.net 站点中给出的示例之一
function reverse_strrchr($haystack, $needle, $trail)
{
return strrpos($haystack, $needle) ? substr($haystack, 0, strrpos($haystack, $needle) + $trail) : false;
}
但它给了我下面的路径,但我想/sample
从头到尾
你的路径是 D:///path/to/required/directory/sample/subdirectory/a/b/abc