JavaScript Regular Expression Parser and Visualizer.
npm install regulex_commontext
github: https://github.com/wyc194/regulex.git
`
`text
origin project github: https://github.com/CJex/regulex
`
#### Origin Project Declare
- Written in pure JavaScript. No backend required.
- You can embed the graph on you own site through HTML iframe element.
- Detailed error message. In most cases it can point out the precise syntax error position.
- No support for octal escape. Yes it is a feature! ECMAScript strict mode doesn't allow octal escape in string, but many browsers still allow octal escape in regex. In regulex, DecimalEscape will always be treated as back reference. If the back reference is invalid, e.g. /\1/, /(\1)/, /(a)\2/, or DecimalEscape appears in charset(because in this case it can't be explained as back reference, e.g. /(ab)[\1]/, Regulex will always throw an error.
#### Project Declare
- 更改依赖性:去除requireJs,适应ES6模块化使用方式.
$3
`text
如采用以