getTuidFromHexadecimalText function

String getTuidFromHexadecimalText(
  1. String hexadecimalText
)

Implementation

String getTuidFromHexadecimalText(
    String hexadecimalText
    )
{
    return getBase64TextFromHexadecimalText( hexadecimalText )
            .replaceAll( '+', '-' )
            .replaceAll( '/', '_' )
            .replaceAll( '=', '' );
}