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,320 community submitted regex patterns...
0
openssl index.txt records
Python
parse records of index.txt managed by openssl (easyrsa) CA
Submitted by
Mikhail Belyankin
-
2 years ago
0
匹配单行函数名
Python
(static\s){0,1}\w{1,}\s{1,}\w{1,}\s\(.*\)
Submitted by
anonymous
-
2 years ago
0
OCP typedef name
Python
Match to ocpCamelCase Name[Ptr]
Submitted by
Xiaoxing Cheng
-
2 years ago
0
TatraBanka AMOUNT_VALUE
Java 8
some descriptoin
Submitted by
Inez van Acker, Robert Schulz
-
2 years ago
(Last modified a year ago)
0
Fraction to decimal
Python
Convert fractions in for of 7 1/2 or 7-1/2 with optional spacing to 7.5 avoiding expressions like 5-7 / 10-11 to be mistaken as 5-7/10
Submitted by
Waleed Kilany
-
2 years ago
1
Conventional Commits RegEx
Python
This RegEx can be used to check whether a string (usually a commit message) matches the structure specified in the conventional commits specification and it allows to retrieve the sections of the structure via. named groups. The groups are the following: (? means, that this can be empty/nullable) ...
Submitted by
mccoderpy
-
2 years ago
0
email valid
Java 8
email validation
Submitted by
Hoot
-
2 years ago
0
netstat
Python
Активные соединения
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Driverquery
Python
Установленные драйвера
Submitted by
anonymous
-
2 years ago
0
Assoc
Python
Разбивает вывод команды Assoc
Submitted by
anonymous
-
2 years ago
0
parsing arp -a
Python
Разбивает на части вывод команды arp -a
Submitted by
baldateg
-
2 years ago
0
matching the end integer at the end of a command and capture the integer
Python
trig:seq:lev\s+([+-]?\d+)
Submitted by
anonymous
-
2 years ago
0
date dd.mm.yyyy
Java 8
Date format dd.mm.yyyy
Submitted by
anonymous
-
2 years ago
0
apdl flst
Python
apdl flst
Submitted by
anonymous
-
2 years ago
0
check strinf begin with a word
Python
you can change the word that you want to check begins within the string by changing the "test" word in the regex
Submitted by
jumma
-
2 years ago
0
ipv4 addresses
Python
Valid ip addreses
Submitted by
anonymous
-
2 years ago
0
partnkey value
Java 8
Extract value partn_key
Submitted by
anonymous
-
2 years ago
0
Extract a string key's values from a json
Java 8
Sample: Finds errorType key values from a json. Values are returned in capturing group 1 of each match. Both UNKNOWN and UNAUTHENTICATED will be captured. ...
Submitted by
amansaryal
-
2 years ago
(Last modified 2 years ago)
0
Identifier Regex
Java 8
Regex for identifiers
Submitted by
anonymous
-
2 years ago
0
Variable address condition
Java 8
This regex matches the variable address condition like: [1,100] >= 1 && [1,111] <= 2
Submitted by
Texx
-
2 years ago
1
...
11
12
13
14
15
...
116
Community Library Entry
1
Regular Expression
Java 8
"
^
[^
.'-
]
.
*
[^
.'-
]
$
"
gm
Open regex in editor
Description
String doesn't start or end with . - '
Submitted by
VS
-
4 years ago