“UUID Regex” Kode Jawaban

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 untuk 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

Jawaban yang mirip dengan “UUID Regex”

Pertanyaan yang mirip dengan “UUID Regex”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya