Regular Expressions 101

Sponsors

Library entries

1
java

json value extract

json value extract
Submitted by anonymous - a day ago
0
pcre2

T1

Reguljärt uttryck för att matcha T1
Submitted by Jonas Thor - 2 days ago
0
pcre2

weekly

写周报把优路仕这边的工时天数去掉
Submitted by anonymous - 2 days ago
0
pcre2

test123

test
Submitted by anonymous - 2 days ago
0
javascript

Classification Matcher

Classification Matcher
Submitted by anonymous - 4 days ago
0
pcre2

Parse XML element parts

Parse XML element parts
Submitted by emadhusameldeen@gmail.com - 4 days ago
0
javascript

RTTU Pharsing

RegEx for RTTU Pharsing
Submitted by CVIKL Dubravko - 4 days ago
0
pcre2

Gene ID from GTF Attributes

As the title says, duh...
Submitted by anonymous - 4 days ago
0
python

Bespoke NGINX Log Parse

Splits NGINX logs into named groups
Submitted by Simon - 5 days ago
0
pcre2

match the id of linkedin url

match the id of LinkedIn URL
Submitted by goldentwon - 5 days ago

Distinguish torrent files (series vs movies)

Vote

81

Regular Expression
python

"
^ # get the title of this movie or series (?P<title> [-\w'"]+ # match separator to later replace into correct title (?P<separator> [ .] ) # note this *must* be lazy for the engine to work ltr not rtl (?: [-\w'"]+\2 )*? ) # start of movie vs serie check (?: # if this is an episode, lets match the season # number one way or another. if not, the year # of the movie (?: # series. can be a lot prettier if we used perl regex... # make sure this is not just a number in the title followed by our separator. # like, iron man 3 2013 or my.fictional.24.series (?! \d+ \2 ) # now try to match the season number (?: s (?: eason \2? )? )? (?P<season> \d\d? ) # needed to validate the last token is a dot, or whatever. (?: e\d\d? (?:-e?\d\d?)? | x\d\d? )? | # this is likely a movie, match the year (?P<year> [(\]]?\d{4}[)\]]? ) ) # make sure this ends with the separator, otherwise we # might be in the middle of something like "1080p" (?=\2) | # if we get here, this is likely still a movie. # match until one of the keywords (?= BOXSET | XVID | DIVX | LIMITED | UNRATED | PROPER | DTS | AC3 | AAC | BLU[ -]?RAY | HD(?:TV|DVD) | (?:DVD|B[DR]|WEB)RIP | \d+p | [hx]\.?264 ) )
"
gimx

Description

Loading markdown...
Submitted by Firas Dib - 9 years ago