Function to extract a certain number of characters from a string to the right.
<%
String = "I want last five characters from this string..."
response.write Right(String, 5)
%>
Outut will be: "ng..."
![]()