我想从下面的字符串中找到第一个和最后一个下划线(_)之间的字符串
我试过这个:
$s = '23_The_Sample_Book_145236985.pdf';
$matches = [];
$t = preg_match('/\_(.*?)\_/', $s, $matches);
print_r($matches[1]);
我希望输出像……
The_Sample_Book
但我觉得……
该
解决方法:
希望这可以帮助
$s = '23_The_Sample_Book_145236985.pdf';
$matches = [];
$t = preg_match('/\_(.*)\_/', $s, $matches);
print_r($matches[1]);