vote up 2 vote down star
1

Some online websites like to encode all their text through HTML entities, so instead of seeing a text like

So I'm looking

You get something like:

So I'm looking 

I was wondering if there's a built in way to translate the encoded text to regular text using any Emacs built-ins or if I should declare my map of strings ("&83" => "S"...) and manually decode it using a map.

Any pointers would be greatly appreciated.

flag

1  
BTW: Those are NOT HTML entities, but Unicode entities - which is different. See en.wikipedia.org/wiki/… – Martin Hohenberg Oct 27 at 15:58

1 Answer

vote up 1 vote down

Don't know if there is a built in function, but this small function can do the job:

(defun my-insert-encode-entities-string (str)
  (mapconcat
   (lambda (char) (format "&#%d;" char))
   (string-to-list str)
   ""))

If you only wish to encode HTML entities, use url-insert-entities-in-string instead.

link|flag
The function is wrong since you don't want to format as %d, you want to get a %d and format it as a char. – Federico Builes Oct 30 at 4:03
@Federico: I'm not sure if I can see your point. Calling (my-insert-encode-entities-string "So I'm looking") returns exactly the same result you provided. Variable char holds the current character represented as a integer so in this particular case I think it's no matter whether using %s or %d. – Török Gábor Oct 30 at 7:59
@Török: There was a little misunderstanding, as you can see in the question I was looking for "...a built in way to translate the encoded text to regular text". Your solution converts regular to encoded text :) I wrote this gist.github.com/222709 to fix it but it's obviously not as clean as your original proposal. – Federico Builes Oct 30 at 20:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.