I need some help with a regular expression to match strings that begin with the characters EN followed by a space.
I have tried '^EN '
But it wont match the the trailing space. Is there away to force it to match only strings beginning with ‘EN ‘ and not just containing it and include the trailing space in the match.
Try this one:
That’ll match strings that start with
ENfollowed by one or more space characters.