String CleanInput (String Strin)
{
// Replace Invalid Characters with Empty strings.
Return Regex.replace (Strin, @ "[^ / w /.@-]", "");
}