如何检查字符串是否以大写字母开头,如果第一个字母可能不在 AZ 范围内,但也来自其他语言,并且同时如果第一个字符不是数字?
例子:
"This is string" - match
"this is string" - not match
"5 not good" - not match
"Увеличи starts capital" - match
"мащабиране no capital" - not match
在 php 中:
if (preg_math('/??/i', $str) ) {
echo 'yeeee haaa';
}