str.slice
时间: 2023-06-29 13:16:24 浏览: 118
String_Split.scl
`str.slice()` 是 JavaScript 中的字符串方法,用于从字符串中提取子字符串。它的语法如下:
```
str.slice(startIndex)
str.slice(startIndex, endIndex)
```
其中:
- `startIndex` 表示开始提取的位置,可以是负数,表示倒数第几个字符的位置(比如 `-1` 表示最后一个字符位置)。
- `endIndex` 表示结束提取的位置(不包括该位置的字符),可以省略,表示提取到字符串末尾。如果是负数,则表示倒数第几个字符的位置。
这个方法会返回一个新的字符串,包含从 `startIndex` 到 `endIndex` 的子字符串。如果 `startIndex` 大于等于字符串长度或者 `startIndex` 大于 `endIndex`,则返回空字符串。如果 `endIndex` 大于字符串长度,则提取到字符串末尾。
阅读全文