Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Strings and Spaces

Hi I'm just trying to simply add a bunch of spaces between two strings but for some reason , I'm only getting the results of 1 space when I have placed about 15 spaces .

for example , I'm doing the following : str1 & " " & " " & " " & " " & str2 but I'm only getting the results of just one space. How can I make it add more than one space between the two ? Thanks
[404 byte] By [Matrix.net] at [2007-11-11 10:21:41]
# 1 Re: Strings and Spaces
Most Web browsers automatically strip excess white space. Try this:

str1 & " " & str2
Phil Weber at 2007-11-11 23:11:56 >