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 3,280 community submitted regex patterns...
0
Russian months
PCRE2 (PHP >=7.3)
Русские месяца
Submitted by
piterden
-
3 years ago
0
是否包含内容
PCRE2 (PHP >=7.3)
aa
Submitted by
Blake one
-
3 years ago
0
특수문자 제거
PCRE2 (PHP >=7.3)
특수문자 제거
Submitted by
anonymous
-
3 years ago
0
Phone Number
PCRE2 (PHP >=7.3)
Phone number
Submitted by
me
-
3 years ago
0
HTTP Origin
PCRE2 (PHP >=7.3)
May be used to validate HTTP Origin
Submitted by
cicnavi
-
3 years ago
0
Laravel inner/outer localization
PCRE2 (PHP >=7.3)
Laravel inner/outer localization
Submitted by
John Karlo Cachero
-
3 years ago
0
regex shopify kca sku
PCRE2 (PHP >=7.3)
regex shopify kca sku
Submitted by
anonymous
-
3 years ago
0
pdf extension whether query strings or no
PCRE2 (PHP >=7.3)
pdf extension whether query strings or no
Submitted by
andru255
-
3 years ago
0
Edge Case Catcher
PCRE2 (PHP >=7.3)
Identifies rare and unusual typos and other edge cases in files converted to txt from other formats that would otherwise be difficult to single out.
Submitted by
lion
-
3 years ago
0
Us mobile no validation Regex
PCRE2 (PHP >=7.3)
just a us mobile no validator
Submitted by
Naman Shrimali
-
3 years ago
0
regex day
PCRE2 (PHP >=7.3)
y
Submitted by
anonymous
-
3 years ago
0
Capture Groups for Date Parsing
PCRE2 (PHP >=7.3)
Rip apart a date-time and reassemble the parts.
Submitted by
Richard Eigenmann
-
3 years ago
0
GraphQL C# helper substitution pattern
PCRE2 (PHP >=7.3)
No description
Submitted by
anonymous
-
3 years ago
0
Match all characters accept for those not accepted
PCRE2 (PHP >=7.3)
Pattern for validating a text area, to allow all characters except those in the regex pattern. An event listener checks entry on keyup, and displays error or success live in the bootstrap 5 HTML. if (field.name === "form_message") { const re = /#%^&*\/; if (re.test(field.va...
Submitted by
anonymous
-
3 years ago
0
find dk domains
PCRE2 (PHP >=7.3)
only finds dk domains in urls
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Madmax plots
PCRE2 (PHP >=7.3)
Madmx plots
Submitted by
anonymous
-
3 years ago
0
Number valid for Ukraine phone
PCRE2 (PHP >=7.3)
(?=.*\+[0-9]{3}\s?[0-9]{2}\s?[0-9]{3}\s?[0-9]{4,5}$) \+ =обязательно + ввести [0-9]{3}\s? =вводить три цифры и разрешен пробел после [0-9]{2}\s? =вводить две цифры и разрешен пробел после [0-9]{3}\s? =вводить три цифры и разрешен пробел после...
Submitted by
anonymous
-
3 years ago
0
Add string after matching 1st occurence, every line
Golang
Regex adding a string (here vs_) after 1st matching occurence (of reflectance_\d_).
Submitted by
Nikos Alexandris
-
3 years ago
0
C# Add default xml comment to public class properties
PCRE2 (PHP >=7.3)
Converts this: public string? PropertyA { get; set; } To this: `/// /// PropertyA...
Submitted by
anonymous
-
3 years ago
0
rest api
PCRE2 (PHP >=7.3)
session key 생성 curl -k https://splunk_server_ip:8089/services/auth/login --data-urlencode username=admin --data-urlencode password=admin01! search query curl -k -H "Authorization: Splunk 9d3zIppergQSjJ2C0TPV8PZghZ5fdvZz_GcVihhHLEdbpaZQAttQ10s^joWS_UpKvEbgM4ck9wtN_5wn5xbFZv04nAX9_nQEiVxcf3S" http...
Submitted by
anonymous
-
3 years ago
1
...
25
26
27
28
29
...
164
Community Library Entry
3
Regular Expression
Golang
`
(?i)
^
(?:
(
[
a
-
z0
-
9-
]
+
|
\*
)
\.
)?
(
[
a
-
z0
-
9-
]
{1,61}
)
\.
(
[
a
-
z0
-
9
]
{2,7}
)
$
`
gm
Open regex in editor
Description
Validates subdomain, root domain, and wild card domains
Submitted by
AnonymousDapper
-
8 years ago