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 18,020 community submitted regex patterns...
1
PascalCase -> snake_case
PCRE2 (PHP >=7.3)
Works with many forms of alphanumeric PascalCase PascalCase Pascal PascalCaseCase Pascal684Case (pascal684_case) Pas45calCase (pas45cal_case)...
Submitted by
inesvar
-
9 months ago
1
simple email validator
PCRE2 (PHP >=7.3)
Email address validator
Submitted by
anil
-
9 months ago
1
Python logs parser (Airflow)
Python
Parser for individual row of log pattern for parsing row in format: [2023-03-11 00:00:07,377] {taskinstance.py:1088} INFO - Starting attempt 1 where: - time_full: [2023-03-11 00:00:07,377]...
Submitted by
anonymous
-
9 months ago
1
homework 1
PCRE2 (PHP >=7.3)
this is the answer for question 1
Submitted by
Christian Thrige Nielsen
-
9 months ago
1
Remove multiple forward slash from url
PCRE2 (PHP >=7.3)
(): This is a capturing group that matches any character except a colon :, and it captures this character for later use in the replacement. (/ {2,}): This part matches two or more consecutive forward slashes. The replacement part $1/ uses the captured character from the first part (which is any char...
Submitted by
Apon Ahmed
-
9 months ago
(Last modified 9 months ago)
1
IPv4 address with optional CIDR suffix
ECMAScript (JavaScript)
Matches any valid IPv4 address with, optionally, a CIDR suffix. 0.0.0.0 to 255.255.255.255 and 1.1.1.1/0 to 1.1.1.1/32. Use the following regex if you don't want to allow the CIDR suffix. ...
Submitted by
MAZ01001
-
9 months ago
1
Credit card regex
PCRE2 (PHP >=7.3)
Credit card name and surname with turkish char
Submitted by
anonymous
-
9 months ago
0
PLP redirection
PCRE2 (PHP >=7.3)
PLP redirection
Submitted by
anonymous
-
9 months ago
1
Regex to Match Regular Expression in JS/TS
PCRE2 (PHP >=7.3)
Matches regular expressions in JS/TS (EcmaScript) code including none or one of the flags g, i`, m, u, y`.
Submitted by
Redu
-
9 months ago
1
Match Single Line (//) Comments in JSON
PCRE2 (PHP >=7.3)
Doesn't get confused by the url values like "https://www.example.com" or "file:///some.txt"
Submitted by
Redu
-
9 months ago
(Last modified 9 months ago)
1
username_unix.gamesave
PCRE2 (PHP >=7.3)
TILE_WIDTH = 2 # Includes space for padding and one space between tiles formatted_board = "" for i in range(rows): formatted_row = "" for j in range(columns):...
Submitted by
robert paulson
-
9 months ago
(Last modified 6 months ago)
1
Estract download speed from Ookla Speedtest output
PCRE2 (PHP >=7.3)
surely can be optimized more, but it does the job and the interested number of lines is fairly low.
Submitted by
anonymous
-
9 months ago
1
111
PCRE2 (PHP >=7.3)
((?:[零一二三四五六七八九十百]+))$
Submitted by
anonymous
-
9 months ago
1
IANA Media Type
Java 8
Parses an IANA Media Type value. Doesn't seem to capture repeating parameters, which is a bit of an edge case but valid I think - any suggestions on how to fix would be appreciated.
Submitted by
scottbdr
-
9 months ago
1
Mediawiki History Dump filenames
Python
Matches filenames of MediaWiki history dumps.
Submitted by
CristianCantoro
-
9 months ago
1
loyal
PCRE2 (PHP >=7.3)
loyal
Submitted by
anonymous
-
9 months ago
1
named capture
PCRE2 (PHP >=7.3)
simple named capture
Submitted by
Gene
-
9 months ago
1
ipmitool sensor
PCRE2 (PHP >=7.3)
Parse stdout from ipmitool sensor
Submitted by
anonymous
-
9 months ago
(Last modified 9 months ago)
1
تمرین اول
PCRE2 (PHP >=7.3)
تمرین اول مبانی پردازش گفتار انتخاب شماره هایی که با صفر یا +98 شروع شده انذ.
Submitted by
mabani.
-
9 months ago
(Last modified 9 months ago)
1
Medicare Number
PCRE2 (PHP >=7.3)
Following the rules setup here https://www.cms.gov/medicare/new-medicare-card/understanding-the-mbi-with-format.pdf
Submitted by
Kyle Salmon
-
9 months ago
1
...
26
27
28
29
30
...
901
Community Library Entry
2
Regular Expression
PCRE (PHP <7.3)
/
^
(
[
a
-
z
]
+
)
(
\s
)?
(
[
a
-
z
]
*
)
/
i
Open regex in editor
Description
This just checks for case insensitive first name, last name, or both.
Submitted by
Josh Garnick
-
9 years ago