Skip to content

$findSpecialChars

$findSpecialChars will return all special characters of the given argument.

Usage

$findSpecialChars[text]

Parameters

FieldTypeDescriptionRequired
textstringText where you want to find special characters.true

Example(s)

This will return ######:

1
client.command({
2
name: "findSpecialChars",
3
code: `
4
$findSpecialChars[Aoi.js is ###### great]
5
`
6
});