Skip to content

Instantly share code, notes, and snippets.

@Joopmicroop
Last active May 30, 2018 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Joopmicroop/0e8e74b7a095d34dec56 to your computer and use it in GitHub Desktop.
Save Joopmicroop/0e8e74b7a095d34dec56 to your computer and use it in GitHub Desktop.
// match everything within style tags
(?<=(<style[^>]*>))([^]+?)(?=(<\/style>))
// split paths and urls in path, file, extension
/^(.*[\\\/])([\w\s]+|)(\.\w+|)/
/*
/test/dir/0_3_1448632436130_full.jpg
MATCH
1. `/test/dir/` // path
2. `0_3_1448632436130_full` // filename
3. `.jpg` // extension
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment