StrLower

Item Description

Use with:

Startup scripts, Terminal Launcher, Web, and Windows

SecureLogin version:

3.0.4

Type:

Variable Manipulator

Usage:

StrLower destination [source]

Arguments:

destination

[source]

The output variable. Also the input variable if no source is specified.

The input variable. If not specified, SecureLogin reads the destination variable, makes the necessary changes, and writes over it.

Description:

Modifies a variable so that all the characters are lowercase.

If only a destination variable is specified, the string is read from the destination, then stored back to it. If a source variable is specified, the string is read from the source, and the modified value is stored in the destination variable. In this case, the source variable remains unchanged.

Example:

Dialog  
 Title "Login"
 Ctrl #1
EndDialog
Readtext #301 ?Username
StrLower ?LowerCaseUsername ?Username 
Type ?LowerCaseUsername #2
Click #1