This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| functions:strfind [2017/04/15 14:44] – korshun | functions:strfind [2020/12/24 11:12] (current) – [Examples] monsterovich | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| ===== Description ===== | ===== Description ===== | ||
| Returns the position of the first occurence of what in s. If the string is not present, returns -1. | Returns the position of the first occurence of what in s. If the string is not present, returns -1. | ||
| + | |||
| + | <note tip>To search for the **last** occurence, use [[StrRFind]].</ | ||
| ===== Examples ===== | ===== Examples ===== | ||
| Line 20: | Line 22: | ||
| if (index != -1) | if (index != -1) | ||
| print(s:" | print(s:" | ||
| - | else: | + | else |
| print(s:" | print(s:" | ||
| </ | </ | ||