String.endsWith()
**endsWith()**
## 描述
测试一个字符串是否以另一个字符串结尾。
## 语法
```cpp
myString.endsWith(myString2)
```
**参数:**
- `myString`:类型为 String 的变量。
- `myString2`:另一个类型为 String 的变量。
**返回值:**
- `true`:如果 `myString` 以 `myString2` 结尾。
- `false`:否则。
页:
[1]