csharp regular expression match on string replace part code example
Example: regex replace /
// replaces all / in a String with _
str = str.replace(/\//g,'_');
// replaces all / in a String with _
str = str.replace(/\//g,'_');