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