Clear spaces between tex

  • Thread starter Thread starter Jan
  • Start date Start date
J

Jan

Hallo,

How can i Clear empty spaces between text.
For example:

I've got the name "Justin Name" in a string and want to clear de spaces
between de names so i will get "JustinName".

What can i use to do that?

TIA Jan
 
Hallo,

How can i Clear empty spaces between text.
For example:

I've got the name "Justin Name" in a string and want to clear de spaces
between de names so i will get "JustinName".

What can i use to do that?

TIA Jan

You can also try this:

imports System.Text.RegularExpressions

newString = Regex.Replace(oldString,"\s+","")

This way has the added benefit that it also takes care of tabs
 
Back
Top