Strcat

Item Description

Use with:

Startup scripts, Terminal Launcher, Web, and Windows

SecureLogin version:

All

Type:

Action

Usage:

Strcat variable input-string1 input-string2

Arguments:

variable

input-string1

input-string2

The regular expression.

The first data string or variable.

The second data string or variable.

Description:

Appends the second data string to the first data string.

For example, you include the following line in a script:

STRCAT ?result "SecureRemote" "$username"

When $username is Tim, the ?result variable contains the value "SecureRemote Tim."

Example:

Dialog  
 Title "Login"
 Ctrl #1
EndDialog
Readtext #301 ?Username
StrCat ?LoginID ?Username $Password
Type ?LoginID #2
Click #1