Javascript – Regex to check all occurrences of specific letters be capital
I'm trying to create a regex pattern that follows the rules: All occurrence of the letters E, I, L must be capital strictly. All other letters must strictly be lowercase. I'm working with this rule ^[^eil]*[eil][^eil]*$ but having all capital…