字符串中间数字的regex preg_match

2022-03-29 00:00:00 regex php preg-match
ddw_0_op1
ddw_1_op1
ddw_2_op1
ddw_3_op1
ddw_4_op1
在这些数组字符串中,我如何才能提取或preg_Match仅增加中间的数字。提前感谢


解决方案

我要在下划线处断开字符串:

$parts = explode('_', $string);
$middle = $parts[1];

相关文章