Comment on page
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
Returns a list of text values resulting from the splitting a text value
text
based on any character in the specified delimiter, separators
.Text.Transformations
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"}
Last modified 5yr ago