将html代码转换为十六进制

Convert html code into hex

本文关键字:十六进制 转换 代码 html      更新时间:2023-09-26

我正在尝试将此html代码转换为十六进制。

例如:Macy's将被转换为Macy%27s

感谢您的帮助!

您可以像一样使用带有func参数的replace

'Macy's'.replace(/&#(.+?);/g,function(_, $1){ 
    return '%'+(+$1).toString(16); //create the new substring (to put in place of the substring received from parameter #1)
}); //"Macy%27s"