I'm interested in unescaping text for example: '\' -> '\' in C. Anyone knows of a good library?
By html escape I mean, all the entity references.
|
|
I'm interested in unescaping text for example: '\' -> '\' in C. Anyone knows of a good library? By html escape I mean, all the entity references. |
|||
|
|
|
I had some free time today and wrote a decoder from scratch: entities.c, entities.h. The only function with external linkage is
If The function will return the length of the decoded string. Please note that I haven't done any extensive testing, so there's a high probability of bugs... |
||||||||
|
|
|
I wrote my own unescape code; very simplified, but does the job: pn_util.c |
||
|
|