21-12-13, 11:22 PM
PHP كود :
Dim str As String = "abcd"
Dim out As String = ""
For i As Integer = 0 To str.Length - 1
out &= str(i) & Space(10)
Next
out = out.Substring(0, out.Length - 10)
MsgBox(out)

