getHexadecimalTextFromTuid function

String getHexadecimalTextFromTuid(
  1. String tuid
)

Implementation

String getHexadecimalTextFromTuid(
    String tuid
    )
{
    return
        getHexadecimalTextFromBase64Text(
            '${ tuid.replaceAll( '-', '+' ).replaceAll( '_', '/' ) }=='
            );
}