Extras
match
matchconst number = oneOrMore.digit;
const coordinates = match(number).exactly`,`.match(number);const coordinates = oneOrMore.digit.exactly`,`.oneOrMore.digit;const filename = match(
oneOrMore.word,
exactly`_`,
oneOrMore.digit,
exactly`.txt`
);const filename = oneOrMore.word.exactly`_`.oneOrMore.digit.exactly`.txt`;toString()
toString()toRegExp(flags?)
toRegExp(flags?)Last updated