Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 564 Bytes

text-split.md

File metadata and controls

35 lines (25 loc) · 564 Bytes
description title
Learn more about: Text.Split
Text.Split

Text.Split

Syntax

Text.Split(text as text, separator as text) as list

About

Returns a list of text values resulting from the splitting a text value text based on the specified delimiter, separator.

Example 1

Create a list from the "|" delimited text value "Name|Address|PhoneNumber".

Usage

Text.Split("Name|Address|PhoneNumber", "|")

Output

{
    "Name",
    "Address",
    "PhoneNumber"
}