Online regex tester
SSH Client for IntelliJ IDE
IntelliJ Plugin
Regex Examples
This is sandbox to test JavaScript regular expression. To test JAVA regular expression you can use
java-applet
Regular expression
(JavaScript)
(
1
9
|
2
0
)
\d
\d
(
[
-
/
.
]
)
(
0
[
1
-
9
]
|
1
[
0
1
2
]
)
\2
(
0
[
1
-
9
]
|
[
1
2
]
[
0
-
9
]
|
3
[
0
1
]
)
X
Case insensitive (
i
)
Global (
g
)
Multi-line (
m
)
Text to test
1900-01-01 2007/08/13 1900.01.01 1900 01 01 1900-01.01 1900 13 01 1900 02 31
X
5 matches found
Capture groups
#0
1900 02 31
#1
19
#2
#3
02
#4
31