I have a slight problem, I either have to get rid of the space between som characters (TE 1 to TE1) and it seems that trim doesn't take care of it.
My other option it that ensure that the space is there, and I wonder how that can be accomplished.
The language that I'm working in is VB.NET
Page 1 of 1
Removing spaces
#2
Posted 15 October 2004 - 10:23 AM
.
This post has been edited by crahak: 07 November 2006 - 07:06 AM
#3
Posted 15 October 2004 - 11:56 PM
Without a loop you can do
Dim Str as String
Str = "TE 1"
Str = Str.Replace(" ","")
- ← VB Code to remove WS from Domain
- Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
- [Perl/CGI] How to POST from within a CGI script? →
Share this topic:
Page 1 of 1



Help
Back to top










