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 5,240 community submitted regex patterns...
0
Float representation
Python
All float representations that can be consumed by strtod() (string to double function in c) Compatible with flex/bison
Submitted by
anonymous
-
5 years ago
0
Domain validation regex suitable for user input
Golang
This regexp can be used to validate domain names in Golang. While it cannot enforce the 253 character limit (with optional trailing period not included) that can be easily done with a len(domain) <= 253 check. This can be used as-is in other languages, even with RE2 regex engine. Non-capturing grou...
Submitted by
anonymous
-
5 years ago
0
Extract the actual sub-clauses numbers referred in the cross reference
Python
From the full expression of sub clause or clause referred, it extracts the actual numbers and returns the list of them.
Submitted by
anonymous
-
5 years ago
0
Subparagraph
Python
Searches whether a string of cross references contains the sub paragraph part or not.
Submitted by
anonymous
-
5 years ago
0
Get regex group intersections, not at the end
Python
Not sure
Submitted by
anonymous
-
5 years ago
0
BD Phone No Regex
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Match mandatory groups in a row
Python
no description available
Submitted by
anonymous
-
5 years ago
0
test
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
Match text within HTML tags
Python
no description available
Submitted by
anonymous
-
5 years ago
0
My text
Python
no description available
Submitted by
anonymous
-
5 years ago
0
emojis
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
my first re
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Funkcje
Python
Open file for reading in text mode (default mode) import re import difflib import ptvsd import docx2txt from difflib import SequenceMatcher...
Submitted by
anonymous
-
5 years ago
0
Golang fmt verbs
Golang
Can be used to find all of the verbs in a golang format string. It will correctly extract verbs that would otherwise be specified by fmt.Sprintf, including their flags, width and precision. You can test it out on the fmt documentation, here: https://golang.org/pkg/fmt/
Submitted by
anonymous
-
5 years ago
0
statement matching
Python
no description available
Submitted by
anonymous
-
5 years ago
0
function matching
Python
no description available
Submitted by
anonymous
-
5 years ago
0
check dup statements
Python
no description available
Submitted by
anonymous
-
5 years ago
0
check dup statements
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Links
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Strings
Python
no description available
Submitted by
anonymous
-
5 years ago
1
...
124
125
126
127
128
...
262
Community Library Entry
0
Regular Expression
Python
r"
(?i)
incident:
(
\w.
*
)
,eid:
(
\w.
*
)
,domain:
(
\w.
*
)
,contact:
(
\w.
*
)
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago