Public Function Right(ByVal InputString As String, ByVal Count As Long) As String
Returns the specified number of characters from the right of the specified string.
Dim lString As String = "Hello World"
SendDebug Right(lString, 3) 'Prints 'rld'
SendDebug Right(lString, 0) 'Prints ''
SendDebug Right(lString, 1024) 'Prints 'Hello World'