lastIndexOf()
描述
在原字串中寻找字元或另一个字串。预设是从原字串结尾往开头方向寻找,或者你也可以从指定的起始位置开始寻找。
语法
string.lastIndexOf(val)
string.lastIndexOf(val, from)
参数
string
: String 物件 (字串)
val
: 要寻找的值 字元或字串
from
: 指定一个起始位置
回传
要找的值在原字串的位置。如果没找到则回传 -1。
范例
See also
- String
- indexOf()
- startsWith()
- endsWith()
The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.