Skip to content

Instantly share code, notes, and snippets.

@gtcdevop
Created April 20, 2021 18:01
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 gtcdevop/218a02289a673f06726ec17353fb0ad8 to your computer and use it in GitHub Desktop.
Save gtcdevop/218a02289a673f06726ec17353fb0ad8 to your computer and use it in GitHub Desktop.
Extract id from vimeo
"https://vimeo.com/528989174/14cb949868".match(/(htt.*\.com\/)([a0-z9]*)(\/)?(.*)/).filter(each=> { return each && /^[a0-z9]*$/.test(each) })

["528989174", "14cb949868"]
"https://vimeo.com/528989174".match(/(htt.*\.com\/)([a0-z9]*)(\/)?(.*)/).filter(each=> { return each && /^[a0-z9]*$/.test(each) })

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