Hi,
Quick question. Is there a way to convert a 32 numeric number into a Guid? I have the value stored, just need to parse it back into a GUID format.
Thanks
Hi,
Quick question. Is there a way to convert a 32 numeric number into a Guid? I have the value stored, just need to parse it back into a GUID format.
Thanks
In the end i went for this, but unsure if there is a cleaner way:
var str = capturedInteger;
var parts = [];
parts.push(str.slice(0,8));
parts.push(str.slice(8,12));
parts.push(str.slice(12,16));
parts.push(str.slice(16,20));
parts.push(str.slice(20,32));
var capturedIntegerGuid= parts.join('-');