$findSpecialChars
$findSpecialChars
will return all special characters of the given argument.
Usage
$findSpecialChars[text]
Parameters
Field | Type | Description | Required |
---|---|---|---|
text | string | Text where you want to find special characters. | true |
Example(s)
This will return ######
:
1client.command({2 name: "findSpecialChars",3 code: `4 $findSpecialChars[Aoi.js is ###### great]5 `6});