This Regular expression filter search support
Regex Filter Toggle Using Ctrl+Alt+R
Windows : CTRL+ALT+R
OSX : CTRL+OPTION+R
Support Regular Expression Search.
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.
- Hex Color value
- IPv4
- IPv6
- URL
- Positive Number
- Negative Number
- Number
- Number & Alphabet
- Money
- ex1) 100,000
- ex2) 100,000.123
- ex3) $100,000
- ex4) 100.220.000 (dot insted comma)
- UserName
- Password
- Alphabet
- UUID
- Date:yyyy/MM/dd
- ex1) 1989/02/25
- ex2) 1989-02-25
- ex3) 1989.02.25
- ex4) 1989 02 25
- Date:MM/dd/yyyy
- ex1) 02/25/1989
- ex2) 02-25-1989
- ex3) 02.25.1989
- ex4) 02 25 1989
- Character Limit
- 1-10
You can make changes to the generated regular expression
Character ^ matches the beginning of the line.
ex) /^[\w]{1,10}/g
=> /[\w]{1,10}/g
ex) /[\w]{1,10}/g
=> /[\w]{3,5}/g