Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strInput = "1234567890"
strRev = [red]StrReverse(strInput)[/red]
strOutput = ""
for i = 1 to len(strRev)
strOutput = strOutput & mid(strRev, i, 1) & "."
next
'take off the last stop
strOutput = left(strOutput, len(strOutput) - 1)