将 html 代码转换为十六进制
Convert html code into hex
我正在尝试将此 html 代码转换为十六进制。
例如:Macy's
将转换为Macy%27s
。
感谢任何帮助!
您可以将 replace 与 func 参数一起使用,例如
'Macy's'.replace(/&#(.+?);/g,function(_, ){
return '%'+(+).toString(16); //create the new substring (to put in place of the substring received from parameter #1)
}); //"Macy%27s"
我正在尝试将此 html 代码转换为十六进制。
例如:Macy's
将转换为Macy%27s
。
感谢任何帮助!
您可以将 replace 与 func 参数一起使用,例如
'Macy's'.replace(/&#(.+?);/g,function(_, ){
return '%'+(+).toString(16); //create the new substring (to put in place of the substring received from parameter #1)
}); //"Macy%27s"