Skip Menu |

This queue is for tickets about the UUID-Tiny CPAN distribution.

Report information
The Basics
Id: 76649
Status: new
Priority: 0/
Queue: UUID-Tiny

People
Owner: Nobody in particular
Requestors: dagolden [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: Converting UUID strings with parentheses
On Windows, UUID strings often show up wrapped in parentheses. C.f. Win32::GuidGen(). Your string regexes and conversions might want to account for that. E.g. tr/()-//d and so on. Side note: uuid_to_string can be done slightly more elegantly and efficiently as join("-", unpack("H8H4H4H4H12", $uuid)) instead of with maps and substrings. Regards, David