typescript截取字符串的函数
在 TypeScript 中,可以使用 `substring()` 或 `slice()` 函数来截取字符串。
1. 使用 `substring()` 函数来截取字符串:
```typescript
const str = "Hello, World";
const result = str.substring(startIndex, endIndex);
console.log(result);
```
其中,`startIndex` 是要截取的起始位置的索引(包含),`endIndex` 是要截取的结束位置的索引(不包含)。如果只传递一个参数 `startIndex`,则截取从 `startIndex` 到字符串末尾的所有字符。
2. 使用 `slice()` 函数来截取字符串:
```typescript
const str = "Hello, World";
const result = str.slice(startIndex, endIndex);
console.log(result);
```
substring和slice`slice()` 函数的工作方式与 `substring()` 类似,但是它还支持负数索引。负数索引表示从字符串末尾开始计算位置。
注意:以上两个函数都返回截取得到的新字符串,原字符串不会被修改。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论