Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Donate
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Settings
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 2,900 community submitted regex patterns...
0
Match gradle dependencies
Java 8
.
Submitted by
anonymous
-
2 years ago
0
Match all of the words in arbitrary order
PCRE2 (PHP >=7.3)
Specify words that all have to be contained in a line; the order is arbitrary and there may be other words around them. This is most useful for searching identifiers in source code as normal word boundaries (space or punctuation) cannot be used in these cases. The example regular expression matches...
Submitted by
Sebastian Zander
-
2 years ago
(Last modified 2 years ago)
0
Nigerian local phone number
PCRE2 (PHP >=7.3)
validate a Nigerian local phone number
Submitted by
anonymous
-
2 years ago
0
Json formatter for text
PCRE2 (PHP >=7.3)
With the format: text+. Being + the end of each line, you can export a JSON formatted file with index field for you projects.
Submitted by
anonymous
-
2 years ago
0
huji-oop-ex6
PCRE2 (PHP >=7.3)
regex for huji oop course ex6
Submitted by
anonymous
-
2 years ago
0
Trying
PCRE2 (PHP >=7.3)
to search string in sip call log
Submitted by
Sachin
-
2 years ago
0
OGSP-102503
PCRE2 (PHP >=7.3)
customer regex
Submitted by
anonymous
-
2 years ago
0
Odysee video URL
PCRE2 (PHP >=7.3)
Odysee is a free platform to watch LBRY videos. osChannel = Creator osVideo = individual movie
Submitted by
anonymous
-
2 years ago
0
Anything after a question mark
PCRE2 (PHP >=7.3)
Captures anything after a question mark
Submitted by
Mohamed Heiba
-
2 years ago
0
GEDCOM match level 1 XXXX tags and all subtags
PCRE2 (PHP >=7.3)
This will match level 2 OBJE tags and all subtags: \n2 OBJE.(\n[3-9].)* This will match level 3 OBJE tags and all subtags: \n3 OBJE.(\n[4-9].)* Source: https://www.webtrees.net/index.php/en/forum/help-for-release-2-1-x/37650-import-gedcom-without-obje#97068
Submitted by
anonymous
-
2 years ago
0
Discord Invite Regexp
PCRE2 (PHP >=7.3)
a
Submitted by
MinerPL
-
2 years ago
0
Simple digit removal
PCRE2 (PHP >=7.3)
A simple expression for removing digits from the suffix of a string.
Submitted by
Seth F.
-
2 years ago
0
Kumpulan regex
PCRE2 (PHP >=7.3)
simpenan
Submitted by
anonymous
-
2 years ago
0
Regex Kanwil
PCRE2 (PHP >=7.3)
Ambil $1 buat nampilin nama Kanwil only
Submitted by
anonymous
-
2 years ago
0
Area Only
PCRE2 (PHP >=7.3)
Regex for took area name only
Submitted by
anonymous
-
2 years ago
0
Branch kanwil
PCRE2 (PHP >=7.3)
regex for took branch name with sub name
Submitted by
anonymous
-
2 years ago
0
sub regex
PCRE2 (PHP >=7.3)
regex for took sub name with branch name
Submitted by
anonymous
-
2 years ago
0
RegExp para validar senhas fortes
PCRE2 (PHP >=7.3)
Especificações: -As senhas devem conter de 6 a 15 caracteres -Devem conter pelo menos 1 letra maiúscula -Devem conter pelo menos 1 caractere especial -Devem conter pelo menos 1 número
Submitted by
Dev_Falido
-
2 years ago
0
Titlecase
PCRE2 (PHP >=7.3)
Capitalizes first letter of each word and make the rest lower case
Submitted by
gabrielbergoc
-
2 years ago
0
PlayersFFL
PCRE2 (PHP >=7.3)
Tabular la info de los jugadores desde la tabla de FFL
Submitted by
anonymous
-
2 years ago
1
...
123
124
125
126
127
...
145
Community Library Entry
-1
Regular Expression
Java 8
"
import
\s
+
[
'
\"
]
(?!
package:
)
(?<importPath>
.
*
?
)
[
'
\"
]
"
gmi
Open regex in editor
Description
find dart relative import path
Submitted by
sagarpanchal
-
a year ago