Our task is to create a RegEx pattern that can accurately validate a CAGE Code
A CAGE Code consists of five (5) positions. The code must adhere to the following format:
- The first and fifth positions must be numeric.
- The second, third, and fourth positions can be any combination of alpha/numeric characters except for letters I and O.
- Case sensitivity is not a factor
We attempted to use the RegEx pattern
cageCode = new RegEx(/^[a-zA-Z0-9]{5}$/)
but it does not satisfy the specified requirements.
What might be the appropriate RegEx pattern to successfully validate the given criteria?