I want to write a regex that will find strings of length 10-15 where all characters are [A-Z0-9] (spaces are ok but not other special characters). Some examples:
ABABABABAB12345should matchABAB1234ABA32should matchABA BA BABAB12345should match1234567890987should not matchABCDEFGHIJKshould not matchABABAB
