I have this regex to allow for only alphanumeric characters.
How can I check that the string at least contains 3 alphabet characters as well.
My current rege
+ means "1 or more occurrences."
+
{3} means "3 occurrences."
{3}
{3,} means "3 or more occurrences."
{3,}
+ can also be written as {1,}.
{1,}
* can also be written as {0,}.
*
{0,}