Which of the following will match a string that starts with a digit followed by any number of lowercase letters?

Last Updated :
Discuss
Comments

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]*$

Share your thoughts in the comments