$replaceText
Replaces 'sample' with 'new' from 'text', you can choose how many 'sample' is replaced by inputting 'howMany'.
Usage
$replaceText[text;sample;new;(optional) howMany]
Breakdown
text
- The text where the bot is searching for the 'sample'.sample
- The text to replace with 'new'.new
- The text to replace 'sample' with.how many
- How many times the bot should replace the sample (if there is multiple arguments in 'text' that match 'sample'). Use-1
to replace all 'sample' in 'text' with 'new' (this last argument is optional).
Examples
Example #1:
- Input:
$replaceText[Hello World! Hello Earth!;Hello;Hi;1]
- Output:
Hi World! Hello Earth!
Example #2:
- Input:
$replaceText[Hello World! Hello Earth! Hello Dog!;Hello;Hi;-1]
- Output:
Hi World! Hi Earth! Hello Dog!
Example #3:
- Input:
$replaceText[Hello World! Hello Earth! Hello Dog!;Hello;Hi;-1]
or$replaceText[Hello World! Hello Earth! Hello Dog!;Hello;Hi]
- Output:
Hi World! Hi Earth! Hi Dog!