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,040 community submitted regex patterns...
-1
Dart relative import
Java 8
find dart relative import path
Submitted by
sagarpanchal
-
a year ago
0
Tracking Number Recognition and Parsing
PCRE (PHP <7.3)
T
Submitted by
anonymous
-
a year ago
0
reuse-patterns-using-capture-groups
ECMAScript (JavaScript)
resolving the free code camp reuse-patterns-using-capture-groups problem let repeatNum = "42 42 42"; let reRegex = /^(\d+)([" "])\1\2\1$/; ^ starts with (\d+) a digit with at least one char (or else will count spaces) and have a([" "])(space) after the digit and \1 to r...
Submitted by
gabriel silva lima
-
a year ago
0
Additional
PCRE (PHP <7.3)
Splitting Additionalname in Basename and Specification
Submitted by
JK
-
a year ago
(Last modified a year ago)
-1
HZS003 - PODs (find ref)
PCRE2 (PHP >=7.3)
den finder referencer der starter med afdelingsnummer efterfulgt af fil-ref
Submitted by
anonymous
-
a year ago
-1
Match leading number of port and replace it with another
PCRE2 (PHP >=7.3)
the point is to help replace leading number with another number to prevent some services uses same port
Submitted by
anonymous
-
a year ago
-1
i18n extract
PCRE2 (PHP >=7.3)
extract strings between {…} or __(…)
Submitted by
ced404
-
a year ago
-1
Regex example
PCRE2 (PHP >=7.3)
For pldi
Submitted by
PlaceReporter99
-
a year ago
0
use-capture-groups-to-search-and-replace
ECMAScript (JavaScript)
(\w+)(\s)(\w+)\2(\w+) in this exercise we have to use capture groups and then replace the string order to 'three two one'. But first, when you are using the capture group you may have asked yourself why the code below does not work: (\w+)(\s)\1\2\1 to match the sting "one two three"...
Submitted by
gabriel silva lima
-
a year ago
-1
7 Days to Die replace party girl
PCRE2 (PHP >=7.3)
A regular expression for replacing Arlene and party girl with the lab tech model in 7 Days to Die. This ought to be applied to the file D:\Program Files (x86)\Steam\steamapps\common\7 Days To Die\Data\Config\entitygroups.xml
Submitted by
anonymous
-
a year ago
-1
pesquisa_cautelar
PCRE (PHP <7.3)
Array ( [0] => Página 1 de 5 MEGA [1] => Código da Consulta: 15240795 [2] => MEGA15240795VIS\bKdKd>Z/Z\bOPRETOAGJ3548,SP,MEGA15240795VIS\bKdKd>Z/Z\bOPRETOAGJ3548,SP,MEGA15240795VIS\bKdKd>Z/Z\bOPRETOAGJ3548,SP,MEGA15240795VIS\bKdKd>Z/Z\bOPRETOAGJ3548,SP,MEGA15240795VIS\bKdKd...
Submitted by
emerson
-
a year ago
-1
Bwt Double Quotes
PCRE2 (PHP >=7.3)
Select string between double quotes.
Submitted by
anonymous
-
a year ago
-1
Capturing groups with suffix
Java 8
Capturing the content of column names which are duplicate in nature to extract the actual name and suffix ("right" / "left")
Submitted by
anonymous
-
a year ago
-2
Ascending and Descending order
Java 8
This regex is to match Ascending or descending order of 8 digit number
Submitted by
anonymous
-
a year ago
-1
匹配引号内容/match quotation mark content
ECMAScript (JavaScript)
匹配带引号内容,被引号包含的内容 结构($x) ((前引号)(内容)(后引号)) ...
Submitted by
诶!你的尾巴掉了
-
a year ago
(Last modified a year ago)
-2
Codeforces 1800A Solution
ECMAScript (JavaScript)
By inserting this regex in a programming language to test it against Codeforces 1800A you'll solve the task
Submitted by
EntityPlantt
-
a year ago
0
Regex many
PCRE2 (PHP >=7.3)
Search and change many regex matches
Submitted by
anonymous
-
a year ago
0
BDO client ID
PCRE2 (PHP >=7.3)
Validates client IDs
Submitted by
anonymous
-
a year ago
0
Splitting Inconsistent Addresses
PCRE2 (PHP >=7.3)
This pattern matches inconsistent addresses that have various street names and coordinates. This captures the Address 1 & 2, Type of Street, Coordinates (NE, NW, SE,SW) City, State, and Full zip
Submitted by
Nadira S Fant
-
a year ago
0
Salesforce - Flow Naming Conventions
PCRE2 (PHP >=7.3)
Ensure that Salesforce Flow name meets the following standards: - -
Submitted by
anonymous
-
a year ago
(Last modified a year ago)
1
...
899
900
901
902
Community Library Entry
0
Regular Expression
Python
r"
^
(?:
[
-:+
]
*
|
\d\d
/
\d\d
/
\d\d
\d\d
:
\d\d
:
\d\d
INFO
acceleratorGenerator:
)
Filter
\s
*
(
\(
.
+
\)
)
.
*
\[
pid:
[
-
\d
]
+
,
id:
\d
+
,
(?:
inner:
\S
+
,
)?
sid:
[
-
\d
]
+
\]
(?:
:
\s
+
\{
StructType
\(
(
(?:
\s
+
StructField
\(
\S
+
,
\S
+
,
[^
)
]
+
\)
,
?
)+
)
\)\}
)?
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
5 years ago