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,000 community submitted regex patterns...
0
Busca y captura tipo de persona jurídica en razón social
ECMAScript (JavaScript)
Busca y captura tipo de persona jurídica en razón social
Submitted by
anonymous
-
8 years ago
0
Captura nombre y tipo de archivo
ECMAScript (JavaScript)
Busca y captura nombre de archivo y extensión especifica, no verifica si los caracteres del nombre son validos, eso se puede modificar restringiendo los nombres del primer grupo de captura.
Submitted by
anonymous
-
8 years ago
0
Edgar - Get company name & CIK
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Edgar - Get SIC Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Exception: NOT TRACE
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Find telephone numbers in obs
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
practice
ECMAScript (JavaScript)
This library contains the practice regex.
Submitted by
anonymous
-
8 years ago
0
netBooter Telnet status parser
ECMAScript (JavaScript)
This Regex will parse the status output of netBooter type internet connected power switches.
Submitted by
anonymous
-
8 years ago
0
get parameter only "5002" nothing else
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Telefone
PCRE (PHP <7.3)
Aprendendo Regex
Submitted by
Guilherme Pressutto
-
8 years ago
0
Swap items in formula
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Brace matching for ( and ) parens
PCRE (PHP <7.3)
Escaped characters should be ignored, hence \( and \) should not affect braces.
Submitted by
anonymous
-
8 years ago
-1
get only ids
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
Extract Sql Columns from the given query
ECMAScript (JavaScript)
Tries to find the column names from the given SQL query.
Submitted by
anonymous
-
8 years ago
0
names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Validate camelCase
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
YouTube embed iframe
PCRE (PHP <7.3)
Checked for 200+ tags
Submitted by
anonymous
-
8 years ago
0
Extract SERP
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
buscar objetos en custom-controllers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Find HTML anchor tag <a> without href attribute
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
...
629
630
631
632
633
...
900
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
(?:
\s
*
(?=
\w
+
\.
|
.
*
as
\s
+
|
distinct
\s
+
|)
(
\*
|
\w
+
)
(?=
\s
*
(?=
,
|
from
)
)
)
/
ig
Open regex in editor
Description
Tries to find the column names from the given
SQL
query.
Submitted by
anonymous
-
8 years ago