我有这样的'D34566'模式。我如何检查这个模式包含在给定的字符串中。
String = D34566-Test Case.
Pattern = D followed by 5 digits.
即以D开头,后跟5位数的单词。
答案 0 :(得分:1)
您可以尝试使用以下模式检查要在字符串中找到的单词:
if (preg_match('/\bD\d{5}\b/', $string)) {
// OK
}
答案 1 :(得分:1)
preg_match("/^D\d{5}/", $string)
答案 2 :(得分:0)
喜欢这样:
preg_match('/^(D\d{5})/', String);