programming-examples/asp/More_Code_Snippets/Reverse a string using strReverse.asp

8 lines
150 B
Plaintext
Raw Normal View History

2019-11-18 14:25:58 +01:00
<%
Dim strSample
'our sample string
strSample = " This is our sample string"
'reverse the string
Response.Write strReverse(strSample)
%>