Thread
:
Replace Space charcter in a string variable
View Single Post
#
1
Posted to microsoft.public.excel.programming
pikus
external usenet poster
Posts: 1
Replace Space charcter in a string variable
For x = 1 To Len(strVar)
If Mid(strVar, x, 1) = " " Then
Mid(strVar, x, 1) = "_"
End If
Next x
I haven't tested this, but it works in theory. Let me know if you hav
any problems - Piku
--
Message posted from
http://www.ExcelForum.com
Reply With Quote
pikus
View Public Profile
Find all posts by pikus