Static str stripStrings(str _InputString)
{
str message;
message = System.Text.RegularExpressions.Regex::Replace(_InputString, @"[\W_]", "");
return message;
}
-------------------or------------------
Hi,
Just use the below skeleton to remove the " ( double quotes ) orspecial character from the sample string.
strRem('Sample String','*');
* may be -" / or any special character
{
str message;
message = System.Text.RegularExpressions.Regex::Replace(_InputString, @"[\W_]", "");
return message;
}
-------------------or------------------
Hi,
Just use the below skeleton to remove the " ( double quotes ) orspecial character from the sample string.
strRem('Sample String','*');
* may be -" / or any special character