String.remove()
**remove()**
## 描述
原地修改一个字符串,从提供的索引位置开始,移除到字符串末尾的字符,或者从提供的索引位置开始,移除指定数量的字符。
## 语法
```cpp
myString.remove(index)
myString.remove(index, count)
```
**参数:**
- `myString`:一个类型为 String 的变量。
- `index`:开始移除字符的位置(从0开始索引)。允许的数据类型:无符号整数(unsigned int)。
- `count`:要移除的字符数量。允许的数据类型:无符号整数(unsigned int)。
**返回值:**
无
## 示例代码
```cpp
String greeting = "hello";
greeting.remove(2, 2);// greeting now contains "heo"
```
页:
[1]