Removing all spaces from inside a string value in VB.NET
Written by KSG01, December 19th, 2007
Code: ( text )
Source Public Function NoWhiteSpace(ByVal strText As String) As String Return System.Text.RegularExpressions.Regex.Replace(strTe xt, " ", _ String.Empty, System.Text.RegularExpressions.RegexOptions.Ignore Case) End Function Demo Dim Test As String = " This is a simple test for No white spaces function " Console.WriteLine("The original text is [{0}] and the replacement is [{1}]", _ Test, RemoveWhiteSpace(Test))
Plater /
December 19th, 2007 09:10 PM
Hmmm, seems overkill for already created abilities.
This removes all spaces in the string
Code: ( text )
Dim Test As String = " This is a simple test for No white spaces function " Test=Test.Replace(" ", String.Empty)
This removes leading/trailing spaces.
Code: ( text )
Dim Test As String = " This is a simple test for No white spaces function " Test=Test.Trim(" ")
|
|
|
|