Developers Heaven Forum

Web Programming => ASP => Topic started by: admin on December 27, 2009, 10:49:55 AM

Title: Right ASP String Function
Post by: admin on December 27, 2009, 10:49:55 AM
Right is a commonly used ASP function that allows you to copy characters from the right side of a string. It takes in two parameters:

* The string variable to operate on
* An integer representing how many characters to copy

The original string variable is not altered.

Let's say you have a string called UserName which is equal to "Lisa Shea". Now let's say you just want the Shea part, to put into a new field called LastName. Using the InStr function you determine that the last name is 4 characters long. You would then use Right like this:

LastName = Right(UserName, 4)

The result is that LastName would be equal to "Shea".