Text.Combine
Text.Combine(text as list, separator as nullable text) as text
返回将一列文本值 texts
组合为单个文本值的结果。
可以指定最终组合文本中使用的可选分隔符 separator
。
示例:
组合文本值 "Seattle" 和 "WA"。
使用情况:
Text.Combine({"Seattle", "WA"})
输出:
"SeattleWA"
示例:
组合文本值 "Seattle" 和 "WA",以逗号和空格 ", " 分隔。
使用情况:
Text.Combine({"Seattle", "WA"}, ", ")
输出:
"Seattle, WA"