A
active
I want to remove all non-printable characters - including nulls.
I could extend the following by adding as many printable characters as I can
think of.
But I wonder if there isn't something better.
Like a \something that does it all?
Return Regex.Replace(oStr, "[^\w\.@-]", "").Trim
Then I want to trim the result of white space.
Do you know how to do that?
thanks in advance
I could extend the following by adding as many printable characters as I can
think of.
But I wonder if there isn't something better.
Like a \something that does it all?
Return Regex.Replace(oStr, "[^\w\.@-]", "").Trim
Then I want to trim the result of white space.
Do you know how to do that?
thanks in advance