logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Pegex::Grammar::Atoms - Pegex Regex Atoms

Author

       Ingy döt Net <ingy@cpan.org>

Description

       Atoms are special Pegex rules that represent the small pieces of text that you can use to build up
       regular expressions. Usually they are one or two characters.

       It may seem like a waste of time to specify "COLON" in a regex, instead of a simple ":". There are three
       reasons this is encouraged. First is that you are defining a grammar for a new language, and it is worth
       the time to be clear and verbose. Second, using an abstraction like this can help with portability to
       languages with different regex engines. Finally, it makes the grammar for Pegex so much simpler, because
       a "/" is always a part of the Pegex syntax, and a "SLASH" is part of your grammar.

Name

       Pegex::Grammar::Atoms - Pegex Regex Atoms

Synopsis

           use Pegex::Grammar::Atoms;

See Also