$findChars
$findChars will return all letters or words from the given text.
Usage
$findChars[text]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| text | string | The text. | true | 
Example(s)
This will return “Hello”:
1client.command({2    name: "findChars",3    code: `$findChars[Hello!123.@#%&]`4});