Hi,
i'd like to know how to make a regexp that catches the following patterns
ABC[A-Z][A-Z][A-Z] but not ABCDEF and ABCDEE
i've tried somthing like, but the interpreter regards the characters inside the brakets as seperately and not as a combination:
/ABC[^DEF|DEE]/
thanks,
i'd like to know how to make a regexp that catches the following patterns
ABC[A-Z][A-Z][A-Z] but not ABCDEF and ABCDEE
i've tried somthing like, but the interpreter regards the characters inside the brakets as seperately and not as a combination:
/ABC[^DEF|DEE]/
thanks,
Comment