What exactly is this regex checking:
/^[0-9a-zA-Z]+[0-9A-Za-z'\-\.\s]{2,30}$/
Im looking for a string that can contain letters,numbers,spaces,periods,apostrophes, and dashes.
What does the first closure plus second closure mean? [..]+[..]
What exactly is this regex checking:
/^[0-9a-zA-Z]+[0-9A-Za-z'\-\.\s]{2,30}$/
Im looking for a string that can contain letters,numbers,spaces,periods,apostrophes, and dashes.
What does the first closure plus second closure mean? [..]+[..]