Function decode_decimal

Source
pub fn decode_decimal(data: &str) -> Result<String, Box<dyn Error>>
Expand description

Decodes a decimal encoded string.

ยงExamples

use nutek_encode_lib::encoder;
let decoded = encoder::decode_decimal("104 101 108 108 111").unwrap();
assert_eq!(decoded, "hello");