Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不清楚 Text.Split 和 Text.SplitAny 之间的区别。他们似乎都使用相同的语法并做同样的事情。有人可以向我解释它们之间的区别吗?
Text.Split 在提供的分隔符处拆分文本(可以包含多个字符),而 Text.SplitAny 在提供的分隔符中的每个单独字符处拆分文本。
例如 Text.Split("MarcelBeug","ce") 返回
三月
贝格
而 Text.SplitAny("MarcelBeug","ce") 返回
磅
ug