Skip to content

Instantly share code, notes, and snippets.

@DavidMellul
Created May 30, 2018 21:33
Show Gist options
  • Save DavidMellul/c4dc1730eb1021d808fac73ae3c5dd71 to your computer and use it in GitHub Desktop.
Save DavidMellul/c4dc1730eb1021d808fac73ae3c5dd71 to your computer and use it in GitHub Desktop.
const uid = '6-DAVID-6';
const regex = /^(\d)-.+-\1$/;
if( regex.test(uid) )
console.log('It is a valid uid');
// Prints : It is a valid uid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment