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.
CCの前に4つの数字を取得するのに役立つ正規表現が必要です。これらの正確な数を識別する には、正規表現に が含まれている必要があります。cc
cc
例:
1600cc
preg_match('/(\d{4})cc/', $string, $match);
$match[1]番号が含まれます。
$match[1]