私は方法を探していpython
ますPHP
。
"Wählen"
のような文字列に
"Wählen"
つまり、各 ISO 8859-1 文字/記号をその HTML エンティティに置き換えます。
私は方法を探していpython
ますPHP
。
"Wählen"
のような文字列に
"Wählen"
つまり、各 ISO 8859-1 文字/記号をその HTML エンティティに置き換えます。
このようなもの
$html="Wählen";
$html = mb_convert_encoding($html, 'HTML-ENTITIES', 'ISO-8859-1');
// OR $html = htmlentities($html, ENT_COMPAT, 'ISO-8859-1');
echo $new = htmlspecialchars($html, ENT_QUOTES);
パイソン:
# -*- coding: utf-8 -*-
from htmlentitydefs import codepoint2name
def uni_to_html(s):
new_s = ""
for c in s:
try:
new_s += '&{};'.format(codepoint2name[ord(c)])
except KeyError:
new_s += c
return new_s
print uni_to_html(u"Wählen") # Wählen