g
Printer Friendly Version

editor  
BellaOnline's ASP Editor
 

Left ASP String Function

Left is a commonly used ASP function that allows you to copy characters from the left side of a string. It takes two arguments:

* 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 Lisa part, to put into a new field called FirstName. Using the InStr function you determine that the first name is 4 characters long. You would then use Left like this:

FirstName = Left(UserName, 4)

The result is that FirstName would be equal to "Lisa".

ASP String Functions

Introduction to ASP Ebook

Download this ebook to get everything you need to know about learning ASP - from a step by step tutorial to function lists, sample code, common errors and solutions, and much more! 101 pages.

ASP Site @ BellaOnline
View This Article in Regular Layout

Content copyright © 2013 by Lisa Shea. All rights reserved.
This content was written by Lisa Shea. If you wish to use this content in any manner, you need written permission. Contact Lisa Shea for details.



| About BellaOnline | Privacy Policy | Advertising | Become an Editor |
Website copyright © 2023 Minerva WebWorks LLC. All rights reserved.


BellaOnline Editor