Syntax
Public Function StringReverse(str As String) As String
Description
This function is used to get agiven text in inverse order.
Parameters
Key | Description |
str | A string value to be reversed,value of type String |
Return value
Returns a string in reverse order.
Sample
Public Sub main()AlertMessage StringReverse("12345") 'Alert Message will display: 54321End Sub
See Also