hex_to_dec: Hexadecimal to Decimal Code Converter

View source: R/hex-to-dec.R

hex_to_decR Documentation

Hexadecimal to Decimal Code Converter

Description

Hexadecimal to Decimal Code Converter

Usage

hex_to_dec(hex)

Arguments

hex

A string of the hex code.

Details

The function will return NA if non HEX letters are present. The only letters that can be present in the HEX codes are A to F.

Value

The dec code as a character.

Examples

hex_to_dec("349EA72A50")
hex_to_dec("14A5D0BE89")
hex_to_dec(c("14D", "E67"))
hex_to_dec(c("14D", "E67", NA))

poissonconsulting/poisutils documentation built on Feb. 26, 2023, 10 a.m.