a/b

Read(569) Label: string, non-string type, concatenate,

Description:

Concatenate a string with one or more pieces of non-string data.

Syntax:

a/b

Note:

Either a or b is a string. The function will convert the non-string type one to a string before concatenating them to a larger one.

Parameter:

a

Data of any type, with the condition that either a or b is a string

b

Data of any type, with the condition that either a or b is a string

Return value:

A string

Example:

"abc"/12

abc12

date("2015-03-12")/"abc"

2015-03-12abc