Text.SplitAny
Text.SplitAny(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
.
Create a list from the text value "Jamie|Campbell|Admin|Adventure Works|www.adventure-works.com".
Usage
Text.SplitAny("Jamie|Campbell|Admin|Adventure Works|www.adventure-works.com", "|")
Output
{
"Jamie",
"Campbell",
"Admin",
"Adventure Works",
"www.adventure-works.com"
}