如何用PHP编写?
if ($text contains at least one letter from A to Z, regardless of numbers or other characters)
echo 'Yes';
else
echo 'No';
请帮忙。
答案 0 :(得分:5)
这是有帮助的东西
preg_match("/[a-z]/i",$text);
答案 1 :(得分:5)
喜欢这个
if (preg_match('/[A-Za-z]/i', $variable)) {
echo 'Yes';
}
else {
echo 'No';
}
答案 2 :(得分:5)
使用preg_match()函数
if (preg_match('/[a-z]/i', $text))
echo "Matches";
else
echo "No matches";