I want to have a regex match alphabets with its minimum at abc.
So I want to detect if the string contains the alphabet (abcdefghijk...) with case insensitivity.
So it could match :
abc
AbC
abcde
ABCDE
abCdefG
But not match :
cdef -- missing the a
abd -- missing the c
How could i do this?