Coder Social home page Coder Social logo

re's Introduction

This is a proof of concept regex compiler/executor. It should NOT be used in production. It does not adhere to any particular standard and is guaranteed to have severe shortcomings.

#Regular Expressions

Regular expressions are a syntax for describing regular languages. These are languages that can be parsed without any look ahead. The following elements are available:

##literal

Any character that does not have a special meaning matches itself.

##.

The dot matches any character.

##* The star operatior indicates that the preceding subexpression may be repeated zero or more times to be matched by the star.

##( and ) Parentheses group tokens into a subexpression.

##{x,y} ###Not Implemented Braces escaped with a backslash indicate that the preceding subexpression may be repeated at least x times but not more than y times. If y is omitted, the subexpression may be matched x or more times. If y and the comma are omitted, the subexpression must be matched exactly x times.

##| The pipe stands for alternation between two subexpressions. If either subexpression matches, their alternation also matches.

re's People

Contributors

laindir avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.