Power Query
published
Search
K
Comment on page

Text.SplitAny

Text.SplitAny

Returns a list of text values, split on any of the characters in the delimiter.
function (text as text, separators as text) as list

Description

Returns a list of text values resulting from the splitting a text value text based on any character in the specified delimiter, separators.

Category

Text.Transformations

Examples

Create a list from the text value "Jamie|Campbell|Admin|Adventure Works|www.adventure-works.com".
Text.SplitAny("Jamie|Campbell|Admin|Adventure Works|www.adventure-works.com", "|")
{"Jamie", "Campbell", "Admin", "Adventure Works", "www.adventure-works.com"}