$testString = "76,2-2; 75,1-2.22; 79,2-3.6;";
如何在之前和之后获得第一个值;特别选择?
我尝试了多次爆炸,但对性能似乎并不好。
例如,76预期值2,75预期值2.22,79预期值3.6。
PS:是的,ID号前面有空格。
答案 0 :(得分:1)
您可以使用此正则表达式:
$str = '76,2-2; 75,1-2.22; 79,2-3.6;'
preg_match_all('/(\d+),\d+-(\d+(?:\.\d+)?);/', $str, $m);
$output = array_combine ( $m[1], $m[2] );
print_r($output);
<强>输出:强>
Array
(
[76] => 2
[75] => 2.22
[79] => 3.6
)
结果数组包含您正在寻找的所有键值对。您可以查找任何值,如:
echo $output['76']
2
echo $output['75']
2.22
echo $output['79']
3.6
答案 1 :(得分:1)
$find = 75;
preg_match("/$find,\d+-([^;]+)/", $testString, $match);
echo $match[1]; // if found it will always be $match[1]