I have Regualar expression for Postal Codes
[ABCEGHJKLMNPRSTVXYabceghjklmnprstvxy]{1}\d{1}[A-Za-z]-{1} *\d{1}[A-Za-z]{1}\d{1}|[ABCEGHJKLMNPRSTVXYabceghjklmnprstvxy]{1}\d{1}[A-Za-z]{1} *\d{1}[A-Za-z]{1}\d{1}
This works fine.
But I want only Postal codes that starts from "H" character.
For example: H2X 1X8
But the issue is that this regular expression for those postal codes as well which does not start with "H"
e.g j4k1a4
Suggest me, how to modify this regular expression so that It can work for only postal codes starting with "H" character.
I apreciate any response.
Thanks