Right() |
Top Previous Next |
Right() - Crops a string from right Description The Right() function returns an optional number of characters of the supplied string starting from the right. Right(string, length) Parameters The length parameter specifies the number of characters to return. Example MyString = Right("Welcome",3) 'returns 'ome' |