STRING FUNCTION IN VB SCRIPT

String function in VB script




       Strings are a sequence of characters , which can consist of alphabets or numbers or special characters or all of them.A variable is said to be a string if it is enclosed with in double quotes"".String function,which help the developers to work with the strings very effectively.


some string function:


LCase : convert a string to lower case.

UCase : convert a string to Upper case.

Left : returns number of character from the left side of the string.

Right : returns number of character from the right side of the string.

LTrim  : removes spaces on the left side of string.

RTrim : removes spaces on the  right side of string.

Trim :  removes spaces on both the left  and the right  side of string.

Space : specified number of space.

Replace : replace a specified part of a string with another a specified number of time.

Post a Comment

0 Comments