How do I write a function which returns true if the string contains at least 1 capital character, 1 numeric character and 1 special character in groovy?
Thanks in advance
|
How do I write a function which returns Thanks in advance |
||||
|
You can use
|
|||
|
|
Please don't do it.Asking the user to use some set of compulsory characters just for his password to be "strong", instead of being easy to remember, is a very bad idea. Please read this XKCD comic and reconsider your design. UpdateIf you really need to do this (maybe the question has nothing to do with passwords), you should check for uppercase letters using the unicode regex
|
|||||||||||
|
groovyConsoleand a web browser and start trying. – paislee Apr 3 '12 at 0:42