1234567891011121314151617181920212223242526272829303132333435363738 |
- .. _func_string_instr:
- =====
- Instr
- =====
- Instr -
- Description
- ===========
- .. code-block:: blitzmax
- Instr( str$,sub$,start=1 )
- Find a string within a string
- The @start parameter allows you to specifying a starting index for the search.
- For compatiblity with classic BASIC, the @start parameter and returned position
- are both 'one based'.
- Parameters
- ==========
- Return Values
- =============
- The position within @str of the first matching occurance of @sub
- Examples
- ========
- See Also
- ========
|