1. ([A-Z\ ]{2,3})
should be character from A to Z or space. the length is 2 to 3 characters.
2. ([0-9]{4,10})
after (1) the following characters should be numeric. min of 4 characters upto 10 characters.
3. |(\([0-9]{4,10}\))"
if (1) & (2) is not found on the text, it should look for a number 4 to 10 characters length and
"must" be enclosed in parenthesis.