Regular Expressions 101

Sponsors

Library entries

-170
pcre

gfdgfsdgsfdg

no description available
Submitted by anonymous - 10 years ago
-75
pcre

link

no description available
Submitted by anonymous - 10 years ago
-52
pcre

ddasgfsfds

no description available
Submitted by fs - 10 years ago
-36
pcre

E-mail validation regex

no description available
Submitted by anonymous - 10 years ago
-34
pcre

your mom

aasdf
Submitted by your mom - 9 years ago
-23
python

1

no description available
Submitted by anonymous - 9 years ago
-22
pcre

г.москва

no description available
Submitted by anonymous - 9 years ago
-20
javascript

validating email

no description available
Submitted by niyas - 9 years ago
-19
javascript

www.medibank.com.au

no description available
Submitted by anonymous - 7 years ago
-18
pcre

dd-mm-YYYY HH:mm:ss (year range 1000-2999)

no description available
Submitted by Ka. - 10 years ago
-14
javascript

Haha !

no description available
Submitted by Alex - 9 years ago
-13
python

Easy Email detection

Easy Email Detection
Submitted by Philip Lawall - 9 years ago
-11
python

54

no description available
Submitted by anonymous - 10 years ago
-10
pcre

need help

no description available
Submitted by sachin - 9 years ago
-10
pcre

test

no description available
Submitted by test - 9 years ago
-10
javascript

<script>alert(1)</script>

alert(1)alert(1)
Submitted by <script>alert(1)</script> - 9 years ago
-8
pcre

Regular exp to exclude a domain

to exclude one domain abc.com
Submitted by Sandy - 10 years 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