Reference API Roblox

Engine API

Website

Related

Reference API Roblox

LexemeType

Identifies the category of a token produced when the Studio Explorer filter bar lexes a filter expression.

Items 19

HistoryNameValueDescription
644Eof0

End-of-input token emitted when the lexer reaches the end of the filter string.

644Name1

An unquoted identifier token, such as an instance name or property key in a filter expression.

644QuotedString2

A string literal token delimited by single (') or double (") quotes, with backslash escape support.

644Number3

A numeric literal token representing an integer or decimal value used in a comparison.

644And4

The case-insensitive keyword and, used to combine filter conditions with logical AND.

644Or5

The case-insensitive keyword or, used to combine filter conditions with logical OR.

644Equal6

The equality comparison operator, matched as = or == in a filter expression.

644TildeEqual7

The not-equal comparison operator (~=).

644GreaterThan8

The greater-than comparison operator (>).

644GreaterThanEqual9

The greater-than-or-equal comparison operator (>=).

644LessThan10

The less-than comparison operator (<).

644LessThanEqual11

The less-than-or-equal comparison operator (<=).

644Colon12

The colon character (:), used as a separator in filter expressions such as ClassName:PropertyName.

644Dot13

The dot character (.), used to navigate nested property paths in a filter expression.

644LeftParenthesis14

The opening parenthesis character ((), used to begin a grouped subexpression in a filter.

644RightParenthesis15

The closing parenthesis character ()), used to end a grouped subexpression in a filter.

644Star16

The single wildcard character (*), used to match any single name segment in a filter path.

644DoubleStar17

The double wildcard token (**), which matches any number of path segments recursively across the instance hierarchy.

644ReservedSpecial18

A character that is syntactically recognized but has no defined meaning in the current filter grammar.

Description

Studio-only Explorer filter lexer token kinds — not used by experience scripts. Classifies each token produced while tokenizing text in the Studio Explorer filter search bar. The lexer assigns one of these categories to every token; the parser builds an expression tree that the filter evaluates against the Explorer hierarchy.

History 20

Settings