Str="This is a Testing process".how can i retrive the string like letter wise
like,it will show me T,h,i,s,i,s,T..........etc.

''''Try this it will work

Str="This is a Testing process"
var1=replace(Str, " ", "")
For i=1 to len(var1)
        MsgBox mid(var1, i, 1)
Next

-- 
You received this message because you are subscribed to the Google
"QTP - HP Quick Test Professional - Automated Software Testing"
group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/MercuryQTP?hl=en

Reply via email to