“String” 方法
_.StringSplit<str, separator>
使用指定的分隔符字符串将一个字符串分割成子字符串元组,以一个指定的分割字串来决定每个拆分的位置
参数
str (string): 尾部等待被连接的字符串
separator (string): 指定表示每个拆分应发生的点的字符串
返回
string[]: 返回源字符串以分隔符出现位置分隔而成的一个元组
例子
type SplitedStringTuple = _.StringSplit<'Vue', ''>;
// => ['V', 'u', 'e']
type SplitedStringTuple = _.StringSplit<'Vue,React,Angular', ','>;
// => ['Vue', 'React', 'Angular']