Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
パーセント記号の後に数字が続く場合に文字列の先頭で検索して抽出する正規表現が必要です。
$string = "20% - some text"; preg_match('/^[0-9]+%$/',$string);
20%を返す必要があります
$matches次の引数を使用する必要があります。
$matches
$string = "20% - some text"; $matches = array(); if (preg_match('/^([0-9]+%)/', $string, $matches)) { print_r($matches); }