Regular Expressions 101

Community Patterns

0

unit_no_extraction

Python
CREMATRIX
Submitted by anonymous - 4 years ago
0

timestamp

Python
no description available
Submitted by anonymous - 4 years ago
0

parse sqs url

Python
no description available
Submitted by anonymous - 4 years ago

Simple, universal and short regex to find quoted strings. Invalid quotes inside string ignored. flag s (single-line) allows to find multiline strings

1

Regular Expression
Python

r"
([\'\"\`])(.*)\1
"
gm

Description

Loading markdown...
Submitted by V. Martian - 3 years ago