I have a regex that works: ABC-[0-9]+
I also have a regex: DEF-[0-9]+
But I don't get how to combine the two so it will match them both
I tried ABC-[0-9]+ | DEF-[0-9]+
but it didn't really work...
This is all in Java regex if it matters.
Any help's appreciated!