I want to create a regular expression that will check if this input starts with letters c or r then any amount of letters or numbers after that is fine here is my code so far:
/^c[a-zA-Z]*/
How would I change this allow either c or r or in capitals C or R at the beginning?