g
Printer Friendly Version

editor  
BellaOnline's ASP Editor
 

InStr ASP String Function

InStr is a commonly used ASP function that allows you to determine where a character or characters falls within a string. This is much like the command loc or mid in other languages. It takes in 2 parameters:

* The string to operate on
* The character or characters to locate

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 to know where the space falls in the username, so you can cut the string apart into the first name and last name at that point. You would use:

SpaceLoc = InStr(UserName, " ")

The result is that SpaceLoc would be equal to 5. You could then use that knowledge along with the total length of the string (found with the Len function) to use Left and Right to chop up your string.

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