我在嘗試隔離文本字符串中的百分比值。這應該很容易使用preg_match,但由於百分比符號在preg_match中用作運算符,因此無法通過搜索找到任何示例代碼。使用preg_match在字符串中查找百分比值
$string = 'I want to get the 10% out of this string';
我想直到結束是:
$percentage = '10%';
我的猜測是,我需要這樣的東西:
$percentage_match = preg_match("/[0-99]%/", $string);
我敢肯定有一個非常快的回答這個問題,但解決方案正在逃避我!
如何捕捉100%? – 2011-01-25 22:41:55