This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Right Function Example
This example uses the
Right function to return a specified number of characters from the right side of a string.
Dim AnyString, MyStr
AnyString = "Hello World" ' Define string.
MyStr = Right(
AnyString,
1)
' Returns "d".
MyStr = Right(
AnyString,
6)
' Returns " World".
MyStr = Right(
AnyString,
20)
' Returns "Hello World".