Functions - String
Strings are variables that hold letters, numbers, or pretty much anything else you could type on a keyboard. String functions let you do operations with these string variables.
ASC ASP String Function  The Asc function might seem obscure at first - who wants to know the ascii code for characters? But this actually can become quite important in data processing. ASP String Function List  Strings, or variables that take letters and numbers, are used in just about every ASP script written. Here are some functions that allow you to work with them. cStr String Function  You can use cStr to turn an integer into a string. This helps make string processing much easier. 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. LCase ASP String Function  LCase is a commonly used ASP function that allows you to convert all characters in a string to their lower case versions. Left ASP String Function  Left is a commonly used ASP function that allows you to copy characters from the left side of a string. Len ASP String Function  Len is a commonly used ASP function that allows you to determine the number of characters in a string. Replace ASP String Function  Replace is a commonly used ASP function that allows you to replace one character or characters in a string with another character or characters. Right ASP String Function  Right is a commonly used ASP function that allows you to copy characters from the right side of a string. Split ASP String Function  Are you trying to break a string up into smaller pieces? ASP provides an easy to use split function which lets you dice and slice a string. Trim ASP String Function  Trim is a commonly used ASP function that allows you to quickly remove any extra spaces at the beginning or ending of a string. UCase ASP String Function  UCase is a commonly used ASP function that allows you to convert all characters in a string to their upper case versions. ASP Homepage | Editor's Picks Articles | Top Ten Articles | ASP Site Map
Think your link belongs here? Use the contact page to let this editor know.
|