Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template unhex

boost::algorithm::unhex — Converts a sequence of hexadecimal characters into a sequence of characters.

Synopsis

// In header: <boost/algorithm/hex.hpp>


template<typename String> String unhex(const String & input);

Description

Parameters:

input

A container to be converted

Returns:

A container with the decoded text


PrevUpHomeNext