Please enable JavaScript to use regex101
Regular
Expressions
101
Support Regex101
Social
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)
ECMAScript (JavaScript)
Python
Golang
Java
.NET 7.0 (C#)
Rust
PCRE (Legacy)
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among community submitted regex patterns...
0/512
0
text has numbers
Created
·
2023-08-01 06:19
Flavor
·
ECMAScript (JavaScript)
text has numbers
Submitted by
vijay
0
Twitch data capturing
Created
·
2023-07-31 20:27
Updated
·
2023-07-31 20:28
Flavor
·
ECMAScript (JavaScript)
Matches the data sent by the twitch IRC and captures into various groups
Submitted by
Bucky
0
use-capture-groups-to-search-and-replace
Created
·
2023-07-13 14:44
Flavor
·
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" this is because when you do a matching group he turns himself into a variable that capture the last value from regex and try to match again the same value not the regex itself. In the assertion above, were not simple doing : ` one two three (\w+)(\s)\1\2\1 = (\w+)(\s)(\w+)(\s)(\w+) word space word space word ` but we're doing: ` one two three (\w+)(\s)\1\2\1 one space one space one ` because the \1 aways will return the value 'one' and try to match it. So to resolve this, you have to have a capture group for EACH different word.
Submitted by
gabriel silva lima
0
Additional
Created
·
2023-07-13 07:57
Updated
·
2023-07-19 09:43
Flavor
·
PCRE (Legacy)
Splitting Additionalname in Basename and Specification
Submitted by
JK
0
reuse-patterns-using-capture-groups
Created
·
2023-07-13 03:14
Flavor
·
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 repeat the digit \2to repeat the space \1 to repeat the digit regex again and $ to garan it will stop after encountering a char different than the digit.
Submitted by
gabriel silva lima
0
Tracking Number Recognition and Parsing
Created
·
2023-07-12 16:54
Flavor
·
PCRE (Legacy)
T
Submitted by
anonymous
0
Match path that starts with
Created
·
2023-07-11 11:37
Updated
·
2023-07-13 07:57
Flavor
·
ECMAScript (JavaScript)
In my nuxt automation I want to remove src from path because nuxt don't have src dir. hence I want to remove src prefix from all path
Submitted by
JD Solanki
0
Library catalogue (VTECH V-Lib)
Created
·
2023-07-11 02:22
Flavor
·
Python
Matches entries in a library catalogue.
Submitted by
anonymous
0
Html tag match
Created
·
2023-07-10 06:59
Flavor
·
ECMAScript (JavaScript)
Html tag match
Submitted by
anonymous
0
r/ProgrammerHumor comment regex
Created
·
2023-07-09 17:24
Flavor
·
Python
A regex that matches comments that adhere to the rules of r/ProgrammerHumor
Submitted by
anonymous
0
legal edition of DCA
Created
·
2023-07-08 09:46
Flavor
·
ECMAScript (JavaScript)
Extraigo la fecha del PDF de la edición legal del diario de Centroamérica
Submitted by
anonymous
0
Fate stay/night [HuneX/PSV]
Created
·
2023-07-08 02:52
Updated
·
2023-07-08 05:58
Flavor
·
Python
Fate stay/night PS Vita version parsing
Submitted by
anonymous
0
Fate Stay/Night (PC/JP) [Py]
Created
·
2023-07-08 02:50
Flavor
·
Python
Attempting to parse Fate/Stay Night scripts nicely
Submitted by
anonymous
0
New Discord Username
Created
·
2023-07-07 02:09
Flavor
·
ECMAScript (JavaScript)
Validates if a username is valid or not on the new discord username system
Submitted by
anonymous
0
Old Discord Username Match
Created
·
2023-07-07 02:08
Flavor
·
ECMAScript (JavaScript)
Detect and capture every part of the old discord username system
Submitted by
N0de
0
选择题题目与选项匹配
Created
·
2023-07-07 00:59
Flavor
·
Python
对有ABCD四个选项的选择题题目进行匹配
Submitted by
Wang Miao
0
whois
Created
·
2023-07-06 15:38
Flavor
·
PCRE (Legacy)
whois find param
Submitted by
anonymous
0
Add quotes to a malformed JSON string
Created
·
2023-07-06 11:47
Flavor
·
ECMAScript (JavaScript)
This Regex allows to add double-quotes to a JSON string that is missing them. It assumes we have a space after the ":" and also after the ",".
Submitted by
anonymous
0
comma separated ESPEC
Created
·
2023-07-06 07:49
Flavor
·
Python
ESPEC
Submitted by
Ian Cole
0
Bangladeshi phone numbers
Created
·
2023-07-05 18:44
Updated
·
2023-07-05 18:56
Flavor
·
ECMAScript (JavaScript)
Matches all Bangladeshi SIM numbers
Submitted by
Mushfiq Talha
0
Nginx parse error log msg
Created
·
2023-06-30 01:40
Flavor
·
Python
Regex to parse nginx error logs, that can't be converted to json in nginx. To use with fluentbit update group labels from "?P" to "?"
Submitted by
diepes
0
NLP_Regex
Created
·
2023-06-29 15:45
Flavor
·
Python
Learning Regex for NLP
Submitted by
anonymous
0
Валидность телефона Российской Федерации форматов "+7", "7", "8"
Created
·
2023-06-28 18:54
Flavor
·
ECMAScript (JavaScript)
Работает с форматами +7, 7, 8 Варианты валидации любые.
Submitted by
anonymous
0
Regex para Logs de Kiwi Log Forwarder
Created
·
2023-06-27 23:55
Flavor
·
Python
Los logs de Kiwi Log Forwarder no se guardan de manera correcta como un CSV, por lo que tengo la idea de con una regex vaciarlos a un CSV bien hecho para poder tener mejor visualización de estos
Submitted by
anonymous
0
MTN Momo Infos
Created
·
2023-06-27 14:29
Flavor
·
Python
A regex to extract meaningful infos from a Momo message (mobile money) which is recurrent in Africa.
Submitted by
Hans T.
0
Camel-Case Splitter (preserves Acronyms)
Created
·
2023-06-26 18:39
Flavor
·
.NET 7.0 (C#)
Splits camel-case string and preserves acronyms
Submitted by
Tyler S.
0
Page X of X
Created
·
2023-06-26 05:40
Flavor
·
Python
Only matches patterns like "Page 1 of 1", "Page 2 of 2", "Page 3 of 3", "Page 4 of 4", "Page 106 of 106", etc. Only works when page numbers in the string are the same.
Submitted by
anonymous
0
Find last word and space of string
Created
·
2023-06-26 03:43
Updated
·
2023-06-26 03:45
Flavor
·
ECMAScript (JavaScript)
Foo Bar
Submitted by
anonymous
0
Latin Character ranges
Created
·
2023-06-23 09:11
Flavor
·
ECMAScript (JavaScript)
Latin Character ranges
Submitted by
anonymous
0
JavaScript kebab-case
Created
·
2023-06-21 03:34
Flavor
·
ECMAScript (JavaScript)
including digits and double dashes
Submitted by
anonymous
0
JavaScript camelCase
Created
·
2023-06-21 03:29
Flavor
·
ECMAScript (JavaScript)
including digits and sequential uppercase letters
Submitted by
anonymous
0
Cover dates from 2009 and older in French format and English
Created
·
2023-06-19 17:38
Flavor
·
Java
Covering Dates starting from year 2009 and older in French and English Some of the valid Dates format April 2nd 2008 April 2 2008 April 02 2008 2009-01-01 31-03-2009 03-31-2009 31 March 2009 March 31 2009 31 mars 2009 May 10th 1989 April 2nd 2008 2009.01.01 2009 1 31 31st december 2009 31 décembre 2009 31 Decembre 2009 2009/02/01 2009.01.01 2009 01 01 31 03 2009 12 31 2009
Submitted by
Francois-Alexandre Valade-Casaubon
0
Matches words and groups words in quotes
Created
·
2023-06-16 18:50
Flavor
·
ECMAScript (JavaScript)
Spilt a string grouping words in quotes. String: First Last "Full Name" Matches: First|Last|"Full Name"
Submitted by
Frosty
0
parse data URL
Created
·
2023-06-16 16:09
Flavor
·
ECMAScript (JavaScript)
Parse Data URL like: data:image/png;base64,__iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==__
Submitted by
Alan S. Ferreira
0
Remove JSON value quotes
Created
·
2023-06-16 11:28
Flavor
·
ECMAScript (JavaScript)
Removes quotes from value of JSON string
Submitted by
anonymous
0
001~999之间的整数
Created
·
2023-06-14 11:42
Flavor
·
Python
匹配001~999之间的整数
Submitted by
jgx
0
Options symbol parse
Created
·
2023-06-13 18:29
Flavor
·
ECMAScript (JavaScript)
parse option symbol
Submitted by
anonymous
0
Markdown JSON codeblock match
Created
·
2023-06-13 13:34
Updated
·
2023-06-13 15:17
Flavor
·
ECMAScript (JavaScript)
Useful to extract JSON from LLM markdown responses
Submitted by
Lamer217
0
scriptpak №1
Created
·
2023-06-13 10:38
Flavor
·
Python
scriptpak №1
Submitted by
anonymous
0
match ipv4 dynamic add
Created
·
2023-06-12 14:33
Flavor
·
Python
match ipv4 dynamic add
Submitted by
anonymous
0
匹配任何小数,小数点后不保留0
Created
·
2023-06-11 11:42
Flavor
·
ECMAScript (JavaScript)
匹配任何小数,小数点后不保留0
Submitted by
anonymous
0
last last name wo suffix1
Created
·
2023-06-09 16:09
Flavor
·
Python
last last name wo suffix1
Submitted by
josh
0
URL Validation
Created
·
2023-06-09 06:36
Flavor
·
.NET 7.0 (C#)
Can be used to validate on URL's.
Submitted by
anonymous
0
Java RegExMatch Example
Created
·
2023-06-08 12:20
Flavor
·
Java
This is an example for stackoverflow
Submitted by
anonymous
0
Java RegEx Group Test
Created
·
2023-06-08 12:04
Flavor
·
Java
Test
Submitted by
anonymous
0
APA Citation v1
Created
·
2023-06-08 11:39
Flavor
·
Java
Parse APA v7 citations
Submitted by
mathias v
0
detect inner function with recursiion
Created
·
2023-06-07 14:45
Flavor
·
Java
working for all not for java
Submitted by
anonymous
0
catch inner element
Created
·
2023-06-07 14:44
Flavor
·
Java
working regex for any
Submitted by
anonymous
0
CSS @import statement
Created
·
2023-06-07 10:58
Flavor
·
ECMAScript (JavaScript)
Matches CSS @import statements with media and layer support
Submitted by
anonymous
0
jiggl
Created
·
2023-06-07 10:53
Flavor
·
PCRE (Legacy)
toggl track to jira
Submitted by
anonymous
Load More
Community Library Entry
0
Regular Expression
Created
·
2023-07-08 02:52
Updated
·
2023-07-08 05:58
Flavor
·
Python
r"
(?<=
PAGE
\(
)(?!
990
)(?P<pg>
[
\d
]
{1,4}
)
|
(?:
(?<=
_r
|
[
\w
]
\(
)(?P<txt_a>
[
『「“
][^
\n
]
+
(?=
_n
\n
)
)
|
(?P<txt_b>
[
『「“
]
.
*
)
)
"
gm
Open regex in editor
Description
Fate stay/night PS Vita version parsing
Submitted by
anonymous