S
slg
How can i validate the characters in a string are all hex chars.
I tried following but it does not work.
Regex r = new Regex(@"^([A-F]|[a-f]|[0-9])*");
TIA.
I tried following but it does not work.
Regex r = new Regex(@"^([A-F]|[a-f]|[0-9])*");
TIA.