String
The String function creates a repeated sequence of
characters. You specify the character you want to repeat and
the number of times you want it repeated and the function will
return the requested string.
Response.Write "10 exes: " & String(10, "X") & "<BR>" Response.Write "10 ohs: " & String(10, "O") & "<BR>"
If you are interseted in create a repeated string of blank
spaces, you may want to use the Space function instead.
|
 |

|