Skip to content

Instantly share code, notes, and snippets.

@delias
Forked from educartoons/get_id
Created November 7, 2018 04:04
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 delias/03e01c893564a8916b5d201a8c12552a to your computer and use it in GitHub Desktop.
Save delias/03e01c893564a8916b5d201a8c12552a to your computer and use it in GitHub Desktop.
const str = window.location.href ;
const regex = /\/chaplains\/([0-9]{1,5})/g;
const results = regex.exec(str);
const id = results[1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment