I'm trying to validate an input field value that has the following validatino rules:
- Either a number, OR
- A number with a trailing 'A', 'K', or 'W'
some valid values : '1', '12', '1A', '12W' some invalid values : 'A', 'abc', '11A1', '1 A'
Any pointer appreciated. Thx