split()是TypeScript中的内置函数,用于通过将字符串分成子字符串来将String对象拆分为字符串数组。
用法:
string.split([separator][, limit])
参数:此方法接受上面提到和下面描述的两个参数:
- separator -此参数是用于分隔字符串的字符。
- limit -此参数是整数,用于指定要找到的分割数的限制。
返回值:此方法返回新数组。
下面的示例说明TypeScript中的String split()方法。
范例1:
的JavaScript
<script>
// Original strings
var str = "Geeksforgeeks - Best Platform";
// use of String split() Method
var newarr = str.split(" ");
console.log(newarr);
</script>
输出:
[ 'Geeksforgeeks', '-', 'Best', 'Platform' ]
范例2:
的JavaScript
<script>
// Original strings
var str = "Geeksforgeeks - Best Platform";
// use of String split() Method
var newarr = str.split("",14);
console.log(newarr);
</script>
输出:
[ 'G', 'e', 'e', 'k', 's', 'f', 'o', 'r', 'g', 'e', 'e', 'k', 's', ' ' ]
相关用法
- Typescript String charAt()用法及代码示例
- Typescript String charCodeAt()用法及代码示例
- Typescript String concat()用法及代码示例
- Typescript String indexOf()用法及代码示例
- Typescript String lastIndexOf()用法及代码示例
- Typescript String localeCompare()用法及代码示例
- Typescript String replace()用法及代码示例
- Typescript String search()用法及代码示例
- Typescript String slice()用法及代码示例
- Typescript String substring()用法及代码示例
- Typescript String valueOf()用法及代码示例
- Typescript String toString()用法及代码示例
- Typescript String toUpperCase()用法及代码示例
- Typescript String toLowerCase()用法及代码示例
- Typescript String toLocaleUpperCase()用法及代码示例
- Typescript String toLocaleLowerCase()用法及代码示例
- Typescript String substr()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 TypeScript | String split() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。