Can someone assist me in translating the Java Regex code below to JavaScript Regex?
(\\\p{Upper}{2})(\\\d{2})([\\\p{Upper}\\\p{Digit}]{1,30}+)
I attempted using the following JavaScript Regex:
([A-Z]{2})([0-9]{2})([A-Z][0-9]{1,30}+)
Unfortunately, this translation did not compile. Any suggestions or assistance would be greatly appreciated.