Last active
August 29, 2015 14:19
-
-
Save diogomachado/366571cfa69e7cdc1348 to your computer and use it in GitHub Desktop.
Expressões regulares
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validação de "nome completo" | |
Começa com uma string, tem que ter um espaço e depois pode conter mais string | |
----------------------------------------------------------------------------- | |
^[a-zA-z]+[ \b]+.[a-zA-z \b]* | |
Da web | |
Toda palavra deve começar com letra maiuscula | |
Obs: Se for "da Silva" dá problema | |
-- | |
^[A-ZÉÚÍÓÁÈÙÌÒÀÕÃÑÊÛÎÔÂËYÜÏÖÄ]{1}[a-zéúíóáèùìòàõãñêûîôâëyüïöä]+( [A-ZÉÚÍÓÁÈÙÌÒÀÕÃÑÊÛÎÔÂËYÜÏÖÄ]{1}[a-zéúíóáèùìòàõãñêûîôâëyüïöä]+){1,3}$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment