Syntax
Public Function RightString(varString As String, lengthVal As Integer) As String
Description
This function is used to return a string containing the specified number of characters from the right side of a string.
Parameters
Key | Description |
varString | String expression from which rightmost are returned. |
lengthVar | Numeric expression indicating how many characters to return, a value of type Integer. |
Return value
Returns the right side of a string.
Exceptions
Error number | Condition |
5 | lengthVar < 0 |
Sample
Public Sub main()Dim Str Dim Result str= "VertexFX"Result = RightString(str,2)AlertMessage(Result)' it will return FXEnd Sub
See Also