Skip to content

Instantly share code, notes, and snippets.

@mikeforbes5
Last active June 4, 2019 20:12
Show Gist options
  • Save mikeforbes5/0550379b93fc4c1bb49e34643617e46a to your computer and use it in GitHub Desktop.
Save mikeforbes5/0550379b93fc4c1bb49e34643617e46a to your computer and use it in GitHub Desktop.

http://play.inginf.units.it/#/level/1

\d+


http://play.inginf.units.it/#/level/2

(\w+)(\:\w+){5}


http://play.inginf.units.it/#/level/3

ftp://.*[a-zA-Z]/


http://play.inginf.units.it/#/level/4

\$.+?\$


http://play.inginf.units.it/#/level/5

\d+(\.\d+)+


http://play.inginf.units.it/#/level/6

href=([\'\"]).+?\1


http://play.inginf.units.it/#/level/7

http://[^( |>)]+(\w|/)


http://play.inginf.units.it/#/level/8

<h(\d)>?.+?</h\1>


http://play.inginf.units.it/#/level/9

\(?\d{3}\)?.\d{3}.\d{4}


http://play.inginf.units.it/#/level/10

(?<=({|\s))[\w-]+,\s[A-Z]\w*({.+?}[a-z]+)?(('[a-zA-Z]+)?)(\s[A-Z]\w*)?

or

[\w-]+,(\s[A-Z]\w*({.+?}[a-z]+)?('[a-zA-Z]+)?){1,}


http://play.inginf.units.it/#/level/11

(?<=<[h\d\w].+>).+(?=</h\d>)


http://play.inginf.units.it/#/level/12

(?<=\d+\.\s)\w+,\s(\w[.]+)+

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment