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后跟任意字母,后跟任意三位数字。
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}$/