नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Text.SplitAny(text as text, separators as text) as list
About
Returns a list of text values resulting from the splitting of a text value based on any character specified in the delimiter.
text: The text value to split.separator: The delimiter characters used to split the text.
Example 1
Create a list from the given text using the specified delimiter characters.
Usage
Text.SplitAny("Name|Customer ID|Purchase|Month-Day-Year", "|-")
Output
{
"Name",
"Customer ID",
"Purchase",
"Month",
"Day",
"Year"
}