Get each character in a string using VBScript

vbscript

Is there any way by which we can get each character from a string using VBScript? I had used the Mid function but I just want to know if there are any other direct functions which when used returns each character starting from a string.

Best Answer

strString = "test"
For i=1 To Len(strString)
    WScript.Echo Mid(strString,i,1)
Next 
Related Topic