Splitter.SplitTextByWhitespace

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Returns a function that splits text according to whitespace.

Splitter.SplitTextByWhitespace(optional quoteStyle as nullable number) as function  

ArgumentDescription
optional quoteStyleThe quoteStyle acts as described in Lines.FromText. By default, it is QuoteStyle.Csv.
  • Splitter.SplitTextByWhitespace is similar to SplitTextByAnyDelimiter where the delimiters provided are all characters for which char.IsWhitespace returns true.

SplitTextByWhitespace will consider any non-zero sequence of whitespace characters a delimiter.

Show: