你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

strcat()

适用于:✅✅Azure 数据资源管理器Azure Monitor✅ Sentinel

连接 1 到 64 个参数。

语法

strcat( argument1,argument2 [,argument3 ... ])

详细了解语法约定

参数

客户 类型​​ 必需 说明
argument1 ... argumentN 标量 (scalar) ✔️ 要连接的表达式。

注意

如果参数不是字符串类型,则会将它们强制转换为字符串。

返回

连接到单个字符串的参数。

示例

串联字符串

以下示例使用 strcat() 函数连接提供的字符串,以形成字符串“hello world”。结果将分配给变量 str

print str = strcat("hello", " ", "world")

输出

str
hello world

串联的多行字符串

以下示例使用 strcat() 函数创建保存到变量 MultiLineString的串联多行字符串。 它使用换行符将字符串分解为新行。

print MultiLineString = strcat("Line 1\n", "Line 2\n", "Line 3")

输出

结果显示具有多行字符串的展开行视图。

MultiLineString
1. “MultiLineString”:第 1 行
2. 第 2 行
3. 第 3 行