Error[8]: Undefined offset: 5, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

html" class="superseo">中文转换成html中的utf-8的方法

HTML中,中文的“好好学习”可以表示为“好好学习”

在项目中,需要对接短信告警,短信告警返回数据要求是utf8的

后来继续沟通,才发现要的是html-utf8 的;

没有找到合适的golang工具包,涉及语言转码的包主要有

mahonia,支持各种格式的数据转换,gbk,utf8,gb2312

net/html,支持网页转码,改的是转换网页中的<,>,&,',',.

根据网上经验,提供三个版本的转换:

Javascript

function ConvUtf8(obj) {
returnobj.replace(/[^\u0000-\u00FF]/g,function(
public static String UTF8_html_conv(String str){
StringBuffer stbPreemptionArg = new StringBuffer();
for(int i = 0;i<str.length();i++){
if (str.codePointAt(i) > 255){
stbPreemptionArg.append("&#x"+Integer.toString(str.charAt(i), 16)+";");
}else{
stbPreemptionArg.append(str.charAt(i));
}
}
return stbPreemptionArg.toString();
}
) {returnescape(
func CovertToHtml(src string) string{
    rs := []rune(src)
    htmlUtf8 := ""
    for _, r := range rs {
        rint := int(r)
        if rint < 128 {
            htmlUtf8 += string(r)
        } else {
            //utf8 = "\u"+strconv.FormatInt(int64(rint), 16)
            htmlUtf8 += "&#x"+strconv.FormatInt(int64(rint), 16) + ";"
        }
    }
return htmlUtf8
}
).replace(/(%u)(\w{4})/gi, "&#x;") }); }

JAVA

总结

Golang

[+++]

以上所述是小编给大家介绍的中文转换成html中的utf-8的方法,希望对大家有所帮助!

[+++])
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
Error[8]: Undefined offset: 6, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

html" class="superseo">中文转换成html中的utf-8的方法

HTML中,中文的“好好学习”可以表示为“好好学习”

在项目中,需要对接短信告警,短信告警返回数据要求是utf8的

后来继续沟通,才发现要的是html-utf8 的;

没有找到合适的golang工具包,涉及语言转码的包主要有

mahonia,支持各种格式的数据转换,gbk,utf8,gb2312

net/html,支持网页转码,改的是转换网页中的<,>,&,',',.

根据网上经验,提供三个版本的转换:

Javascript

function ConvUtf8(obj) {
returnobj.replace(/[^\u0000-\u00FF]/g,function(
public static String UTF8_html_conv(String str){
StringBuffer stbPreemptionArg = new StringBuffer();
for(int i = 0;i<str.length();i++){
if (str.codePointAt(i) > 255){
stbPreemptionArg.append("&#x"+Integer.toString(str.charAt(i), 16)+";");
}else{
stbPreemptionArg.append(str.charAt(i));
}
}
return stbPreemptionArg.toString();
}
) {returnescape(
func CovertToHtml(src string) string{
    rs := []rune(src)
    htmlUtf8 := ""
    for _, r := range rs {
        rint := int(r)
        if rint < 128 {
            htmlUtf8 += string(r)
        } else {
            //utf8 = "\u"+strconv.FormatInt(int64(rint), 16)
            htmlUtf8 += "&#x"+strconv.FormatInt(int64(rint), 16) + ";"
        }
    }
return htmlUtf8
}
).replace(/(%u)(\w{4})/gi, "&#x;") }); }

JAVA

总结

Golang

以上所述是小编给大家介绍的中文转换成html中的utf-8的方法,希望对大家有所帮助!

[+++])
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
中文转换成html中的utf-8的方法_html-js-css_内存溢出

中文转换成html中的utf-8的方法

中文转换成html中的utf-8的方法,第1张

html" class="superseo">中文转换成html中的utf-8的方法

HTML中,中文的“好好学习”可以表示为“好好学习”

在项目中,需要对接短信告警,短信告警返回数据要求是utf8的

后来继续沟通,才发现要的是html-utf8 的;

没有找到合适的golang工具包,涉及语言转码的包主要有

mahonia,支持各种格式的数据转换,gbk,utf8,gb2312

net/html,支持网页转码,改的是转换网页中的<,>,&,',',.

根据网上经验,提供三个版本的转换:

Javascript

function ConvUtf8(obj) {
returnobj.replace(/[^\u0000-\u00FF]/g,function(
public static String UTF8_html_conv(String str){
StringBuffer stbPreemptionArg = new StringBuffer();
for(int i = 0;i<str.length();i++){
if (str.codePointAt(i) > 255){
stbPreemptionArg.append("&#x"+Integer.toString(str.charAt(i), 16)+";");
}else{
stbPreemptionArg.append(str.charAt(i));
}
}
return stbPreemptionArg.toString();
}
) {returnescape(
func CovertToHtml(src string) string{
    rs := []rune(src)
    htmlUtf8 := ""
    for _, r := range rs {
        rint := int(r)
        if rint < 128 {
            htmlUtf8 += string(r)
        } else {
            //utf8 = "\u"+strconv.FormatInt(int64(rint), 16)
            htmlUtf8 += "&#x"+strconv.FormatInt(int64(rint), 16) + ";"
        }
    }
return htmlUtf8
}
).replace(/(%u)(\w{4})/gi, "&#x;") }); }

JAVA

总结

Golang

以上所述是小编给大家介绍的中文转换成html中的utf-8的方法,希望对大家有所帮助!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/608842.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-14
下一篇 2022-04-14

发表评论

登录后才能评论

评论列表(0条)

保存