THomas veya Thomas ama Thomas Anderson (Thomas anderson çok) geçerli olacaktır: Ben bir dize sadece harfler (az) içeren ve ilk harfi büyük olduğunu, sizin gibi büyük bir kelime 2 mektup sahip olamıyorsak denetleyen bir regex ihtiyacınız
bak:
The Magician Of The Elfs
geçerli olurdu ama ThE MaGiCiAN oF ThE ELFS
if (!preg_match("??", $name)) {
echo "Invalid name!";
}
umarım anlarsın!
Tomasz
Geçersiz:
MaGIciaN Of The ELFz
THomas anderson
Geçerli:
Magician of the elfs
Magician Of the Elfs
Magician of The elfs
Thomas Anderson
Thomas anderson
Basically i dont want it to be possible to have more than 1 capitalized letter in a word, not sentence.