concat

The concat NSM predefined function concatenates two strings together.

Syntax

concat(string1,string2)

Parameters

string1
Specifies a string.
string2
Specifies a string.

Description

The concat NSM predefined function concatenates the string value specified in string1 with the string value specified in string2.

Returns

This functions returns the string that is concatenated.

Examples

concat("source ip"," 10.1.1.0") returns "source ip 10.1.1.0"
concat("te","st") returns "test"