I am trying to build an input mask but AIM is beating me.
The format of the string is:
3 Hex digits - 4 numeric digits - 8 Hex digits - 1 Hex.
Which gives a successful test on A02-2009-000004BE-A (as an example)
I have managed to test this outside of AIM and the expression
/([A-F0-9]{3})-\d{4}-([A-F0-9]{8})-([A-F0-9]{1})/
seems to capture the correct format.
However in the form that it is using it is not happy at all. Does anyone have any ideas?