Friday, May 1, 2015

Program to Reverse the words from the string

'Program to Reverse the words from the string
'Created by Zeeshan

strName = "Hello Everyone"
arrayq =split(strName," ")
For i=ubound(arrayq) to 0 step-1

strNew =strNew+" "&arrayq(i)

Next
print strNew

No comments:

Post a Comment