Removing characters which are not allowed in Windows filenames
Regex illegalInFileName = new Regex(@"[\\/:*?""<>|]");
string myString = illegalInFileName.Replace(myString, "");
Removing characters which are not allowed in Windows filenames
Mostly Robot
Regex illegalInFileName = new Regex(@"[\\/:*?""<>|]");
string myString = illegalInFileName.Replace(myString, "");
Removing characters which are not allowed in Windows filenames