programming-examples/asp/More_Code_Snippets/Reverse a string using strReverse.asp
2019-11-18 14:25:58 +01:00

8 lines
150 B
Plaintext

<%
Dim strSample
'our sample string
strSample = " This is our sample string"
'reverse the string
Response.Write strReverse(strSample)
%>