How do I strip all punctuation from a string in vb.net? I really do not want to do stringname.Replace("$", "")
for every single bit of punctuation, though it would work.
How do i do this quickly and efficiently?
Other than coding something that codes this for me....
Quick example using a positive regex match. Simply place the characters you want removed in it:
You can use a regular expression to match anything that you want to remove:
[^...]
is a negative set that matches any character that is not in the set. You can just put any character there that you want to keep.If you want a non-regex solution, you could try something like this:
Output is "
This is my original string
".