-4

我有像下面这样的字符串变量,它有两个数字的字符串

EUR 66,00 + EUR 3,90 Versandkosten

我需要将两个数字 ex - 66,00 和 3,98 分别提取到两个变量中。谁能告诉我该怎么做

4

5 回答 5

5

我需要将两个数字 ex - 66,00 和 3,98 分别提取到两个变量中。谁能告诉我该怎么做

在 PHP 中有很多很多(和很多)方法可以做到这一点。这里有一对。

1. sscanf($subject, 'EUR %[0-9,] + EUR %[0-9,]', $one, $two);

2. preg_match_all('/[\d,]+/', $subject, $matches); list($one, $two) = $matches[0];
于 2012-07-25T19:07:46.980 回答
2

如果字符串总是看起来像这样,那么这样的正则表达式应该可以工作:

$string = "EUR 66,00 + EUR 3,90 Versandkosten";
preg_match("/([0-9,]+).+([0-9,]+)/", $string, $matches);
var_dump($matches[1], $matches[2]);
于 2012-07-25T18:20:01.860 回答
2

考虑到这个字符串

$string = 'EUR 66,00 + EUR 3,90 Versandkosten';
$ar=explode($string,' ');
$a=$ar[1];
$b=$ar[4];
于 2012-07-25T20:02:20.147 回答
1
preg_match('#([0-9,]+).*?([0-9,]+)#', $String, $Matches);

您的号码将在$Matches[1]$Matches[2]

于 2012-07-25T18:20:31.730 回答
0

这是正确的:

<pre>
<?php
// 1The given string
$string = 'EUR 66,00 + EUR 3,90 Versandkosten';
// 2Match with any lowercase letters
$pattern[0] = '/[a-z]/';
// 3Match with any uppercase letters
$pattern[1] = '/[A-Z]/';
// 4Match with any commas
$pattern[2] = '/(,)/';
// 5Match with any spaces
$pattern[3] = '/( )/';
// 6 Remove the matched strings
$stripped = preg_replace($pattern,'',$string);
// Split into array from the matched non digit character + in this case.
$array = preg_split('/[\D]/',$stripped);
print_r($array);
?>
</pre>
于 2012-07-25T18:44:56.877 回答