js \x 反斜杠x 16进制 编解码

解码
function decode(str){
	return str.replace(/\\x(\w{2})/g,function(_,$1){ return String.fromCharCode(parseInt($1,16)) });
} 编码 function encode(str){ return str.replace(/(\w)/g,function(_,$1){ return "\\x"+ $1.charCodeAt(0).toString(16) }); }

  

posted @ 2023-05-25 14:42  LaLaLa_heng  阅读(0)  评论(0编辑  收藏  举报