[][src]Function htmlentity::entity::decode_chars

pub fn decode_chars(chars: Vec<char>) -> Vec<char>

Decode character list, replace the entity characters into a unicode character.

Examples

use htmlentity::entity::*;

let char_list = vec!['<'];
assert_eq!(decode_chars("&lt;".chars().collect::<Vec<char>>()), char_list);
assert_eq!(decode_chars("&#60;".chars().collect::<Vec<char>>()), char_list);
assert_eq!(decode_chars("&#x3c;".chars().collect::<Vec<char>>()), char_list);