Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vilicvane/regex-combiner

Deprecated, use https://github.com/vilic/regex-tools
https://github.com/vilicvane/regex-combiner

Last synced: 21 days ago
JSON representation

Deprecated, use https://github.com/vilic/regex-tools

Awesome Lists containing this project

README

        

This tool is created for managing long regular expression that can be separated to several parts.

## Usage

http://rawgit.com/vilic/regex-combiner/master/combiner.html

Write muliple regular expressions line by line. This tool will automatically handle back reference index. E.g.:

(abc)
(["'])...\1

\1 above will be changed to \2 and result in a combined regular expression /(abc)|(["'])...\2/.

You may also use named group, e.g.:

($quote:["'])...($quote)

will be converted to /(["'])...\1/.