VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



To remove double spaces (4 lines of code :/)

by Rabbit (2 Submissions)
Category: String Manipulation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Wed 18th June 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

To remove double spaces (4 lines of code :/)

Rate To remove double spaces (4 lines of code :/)



Begin:
Text = Replace(Text, "  ", " ")
If (Replace(Text, "  ", " ") <> Text) Then GoTo Begin
RemDblSpaces = Text
End Function

Download this snippet    Add to My Saved Code

To remove double spaces (4 lines of code :/) Comments

No comments have been posted about To remove double spaces (4 lines of code :/). Why not be the first to post a comment about To remove double spaces (4 lines of code :/).

Post your comment

Subject:
Message:
0/1000 characters