We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The Pattern is a terminal that matches any pre-specified regex. It gets used primarily for identifiers.
Pattern
Section(String regex)
new Pattern("[a-zA-Z_]+");
Matches
"hello_world" "HelloWorld" "HELLO_WORLD" "___"
Fails
"" "Hello-World"