Erlang: convert any string to binary utf8
I took half a day, until I found a wonderful module xmerl_ucs. It is available in Erlangen R14B
uniconvert(String) ->
try xmerl_ucs:from_utf8(String) of
_ ->
list_to_binary(String)
catch
exit:{ucs,{bad_utf8_character_code}} ->
list_to_binary(xmerl_ucs:to_utf8(String))
end.
Читайте також:
- Tutorial: Developing in Erlang with Webmachine, ErlyDTL, and Riak
- flash socket policy-file-request in Erlang
- Agner: a repository of libraries and applications
- Основи Erlang
- md5 в Erlang
- Python and lists:flatten. Such as in Erlang
- Mustache is a framework templating system
- kerl - easy building and installing of Erlang/OTP instances
- Erlang: cpu usage
- Webmachine redirect resource example