regex-filter-and-generator

Regular Expressions filter & Generator

sonim1

2,673

3

1.4.2

MIT

GitHub

APM Version

regex-filter-and-generator package

This Regular expression filter search support

Regex Filter Toggle Using Ctrl+Alt+R

Windows : CTRL+ALT+R
OSX : CTRL+OPTION+R

Regular Expression Search Filter

Support Regular Expression Search.

enter image description here

Regular Expression generator

There is a generator button at the bottom of the panel.

Useful regular expressions can be checked.

You can modify the regular expression in the InputBox.

enter image description here

Editing Tips

You can make changes to the generated regular expression

1. Please remove ^ for full text search

Character ^ matches the beginning of the line. ex) /^[\w]{1,10}/g => /[\w]{1,10}/g

2. Change Limit

ex) /[\w]{1,10}/g => /[\w]{3,5}/g