Which of the following will match a string that starts with a digit followed by any number of lowercase letters?
^\\d[A-Z]*$
^\\d[a-z]+$
^\\d[a-z]*$
\\d[a-z]*$
This question is part of this quiz :