| Name | <ElementTag.matches_character_set[<characters>]> |
| Returns | ElementTag(Boolean) |
| Description | Returns true if the element contains only symbols from the given character set.
The character set is expected to be ASCII only. This tag is case-sensitive. For example: "alphabet" .matches_character_set[abcdefghijklmnopqrstuvwxyz]> returns "true", "Alphabet" .matches_character_set[abcdefghijklmnopqrstuvwxyz]> returns "false" because it has a capital "A", and "alphabet1" .matches_character_set[abcdefghijklmnopqrstuvwxyz]> returns "false" because it has a "1". |
| Group | element checking |
| Source | https://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/objects/core/ElementTag.java#L2444 |