1234567891011121314151617181920212223242526272829303132333435 |
- .. _func_string_replace:
- =======
- Replace
- =======
- Replace -
- Description
- ===========
- .. code-block:: blitzmax
- Replace$( str$,sub$,replaceWith$ )
- Performs a search and replace function
- The Replace$ command replaces all instances of one string with another.
- Parameters
- ==========
- Return Values
- =============
- A string with all instances of @sub$ replaced by @replace$
- Examples
- ========
- See Also
- ========
|