Function doUnescape
Unescape value. If value does not need unescaping this function returns original value.
inout(char)[] doUnescape
(
inout(char)[] value,
const(std .typecons .Tuple!(char,char)[]) pairs
) pure nothrow @trusted;
Parameters
Name | Description |
---|---|
value | string to unescape |
pairs | pairs of escaped characters and their unescaped forms. |