T
Tony Johansson
Hi!
string s = Regex.Replace(input, @"[^\w\.@-]", "");
It's somewhat hard to see but there is a dot before @
What characters are removed from the input string ?
//Tony
string s = Regex.Replace(input, @"[^\w\.@-]", "");
It's somewhat hard to see but there is a dot before @
What characters are removed from the input string ?
//Tony