$removeContains
$removeContains will remove specific word(s) from a given text.
Usage
$removeContains[content;...words]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| content | string | Text where to remove the words from. | true |
| …words | string | Word(s) to remove from the text. | true |
Example(s)
This will remove the word “aoi.js” from the given text:
1client.command({2 name: "removeContains",3 code: `4 $removeContains[Hello, aoi.js!;, ;aoi.js]5 `6});