New to Regex so bear with me. I want to insert an "H" at the beginning of a string if the first character is not an "H". If it is an "H" then I would leave it alone. I'm working under Regex .net
For example...
Input H123456789 Ouput H123456789
Input 123456789 Output H123456789
Input ABCDE Output HABCDE
Thanks
I don't know enough about Regex to include anything helpful here