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.
次の形式のすべての文字列をキャッチする IF 句を作成する必要があります。
Pharmその後に任意の文字が続き、その後に任意の 3 桁の数字が続きます。
Pharm
たとえば、Pharmf750またはPharmc648
Pharmf750
Pharmc648
ご協力いただきありがとうございます。
必要な正規表現は/^Pharm[A-Za-z][0-9]{3}$/.
/^Pharm[A-Za-z][0-9]{3}$/
次のようなものを試してください
if (preg_match('/^Pharm[A-Za-z][0-9]{3}$/', $stringToMatch) { // Do something }
これは非常に簡単です
/^Pharm[a-zA-Z][0-9]{3}$/