MathTop

explode_string 函数

把文本拆成单字符字符串列表。

语法

  • Explode(text)
  • explode_string(text)

参数与选项

text文本值,通常写在引号中。

示例

  1. 拆分文本Explode('abc')返回 ['a', 'b', 'c']。