“uUid regex” Code-Antworten

uUid regex

/[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}/
Don't Tread On Me

Regex für uUid v4

function uuidValidation (item)
{
  let regexUuid = /[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}/;
  return item.match(regexUuid)?true:false
}

let uuid = "88a34ad8-0e16-4057-9d5e-314765d44c8d";
console.log(uuidValidation(uuid));
Fierce Ferret

Ähnliche Antworten wie “uUid regex”

Fragen ähnlich wie “uUid regex”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen