Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Removing spaces between string 1

Status
Not open for further replies.

cctrinh

MIS
Feb 2, 2001
25
US
I need help to remove spaces between the string. I used the Trim() function this remove the leading and trailing spaces. I need to remove something in between. Are there anyway that you can remove the spaces between the string. Any help will be appreciated.

Thanks,
 
You could use Replace.
ex:
myString = Replace(myString," ", "")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top