How do you remove spaces from a string in VB.NET?
|
|
|
To remove ALL spaces:
To remove leading and trailing spaces:
Note: this removes any white space, so newlines, tabs, etc. would be removed. |
|||||||||||||||||
|
|
"Spaces" in the original post could refer to whitespace, and no answer yet shows how to remove ALL whitespace from a string. For that regular expressions are the most flexible approach I've found. Below is a console application where you can see the difference between replacing just spaces or all whitespace. You can find more about .NET regular expressions at http://msdn.microsoft.com/en-us/library/hs600312.aspx and http://msdn.microsoft.com/en-us/library/az24scfc.aspx
|
||||
|
|
|
To trim a string down so it does not contain two or more spaces in a row. Every instance of 2 or more space will be trimmed down to 1 space. A simple solution:
|
||||
|
|
|
You can also use a small function that will loop through and remove any spaces. This is very clean and simple.
|
|||||||
|
