Comment on AutoRegexComments−emilfihlman4yAll words starting with the letter "n" and ending with "g", case insensitive >> /^nw*g$/iThe example regex is completely wrong, it should be /n[a-z]*g/ig
Comments
The example regex is completely wrong, it should be /n[a-z]*g/ig