MathTop

implode_string 函数

把字符串列表直接连接成一个文本。

语法

  • Implode([text1, text2, ...])
  • implode_string([text1, text2, ...])

参数与选项

items要连接的文本片段列表。

示例

  1. 连接字符Implode(['a', 'b', 'c'])返回 abc。