String functions in ASP
by Nirmala[ Edit ] 2009-08-06 17:47:26
Hi..
String Functions
Asc() ->Returns the ascii code of a given character.
cStr() ->Converts an integer or other numeric value into a string.
InStr() ->Located the first occurrence of a character or characters within a string.
LCase() ->Makes an entire string lower case.
Left() ->Gets the leftmost X characters from a string.
Len() ->Tells you the number of characters in a string.
Mid() ->Return a specified number of characters from a string.
Replace() ->Replaces a character or characters within a string with a new character or characters.
Right() ->Gets the rightmost X characters from a string.
Split() ->Break a string up into bits based on spaces, periods, or other characters.
strReverse() ->Returns the reverse of the given string.
Trim() ->Removes any spaces from the beginning or end of a string.
UCase() ->Makes an entire string upper case.