I'm trying to make a script which only adds spaces to the characters and doesn't create a column with them. This is the code i tried:
<%
a=Split("Example1, Example2, Example3",",")
for each x in a
response.write(x & "<br />")
next
%>
And the problem is that i have a large text which only would create would be this (Which is the normal output):
- "Example1"
- "Example2"
- "Example3"
And what i want it to write is this: "E x a m p l e 1 E x a m p l e 2 E x a m p l e 3"
I'm new to code here so i don't have any ideas to do. Any help is appreciated.