...
Returns the zero-based index of the first occurence of the substring after the specified start_index
in the string. If the substring does not occur after the specified start_index
, this method returns -1.
Tip | ||
---|---|---|
| ||
|
...
Code Block | ||
---|---|---|
| ||
BrightScript> o=CreateObject("roInt") BrightScript> o.SetInt(555) BrightScript> print o 555 BrightScript> print o.GetInt() 555 BrightScript> print o-55 500 |
...