You can use
/^[A-Za-z0-9]{6}-\d{2}-[A-Za-z0-9]-\d{4}$/
Or shorter with the case insensitive flag:
/^[A-Z0-9]{6}-\d{2}-[A-Z0-9]-\d{4}$/i
solved Need JS Pattern Validation
You can use
/^[A-Za-z0-9]{6}-\d{2}-[A-Za-z0-9]-\d{4}$/
Or shorter with the case insensitive flag:
/^[A-Z0-9]{6}-\d{2}-[A-Z0-9]-\d{4}$/i
solved Need JS Pattern Validation