Skip to content

$findChars

$findChars will return all letters or words from the given text.

Usage

$findChars[text]

Parameters

FieldTypeDescriptionRequired
textstringThe text.true

Example(s)

This will return “Hello”:

1
client.command({
2
name: "findChars",
3
code: `$findChars[Hello!123.@#%&]`
4
});