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.
アイテムIDを一致させたいのですが、次のようになります:
a1234... b5678... c9876... ...
最初の5文字のみに一致する正規表現を作成するにはどうすればよいですか
最初はアルファベット、2-5 は整数
preg_match_all('/[a-z]\d{2,5}/', $subject, $result, PREG_PATTERN_ORDER); for ($i = 0; $i < count($result[0]); $i++) { # Matched text = $result[0][$i]; }