经测试代码如下:
/**
* 正则替换字符串中的全角字符
*
* @param
* @author 编程之家 jb51.cc jb51.cc
**/
function zo_replace(text) {
return text && text.replace(/[\u3000\uff01-\uff5f]/g,function($0) {
return $0 == "\u3000" ? " " : String.fromCharCode($0.charCodeAt(0) - 0xfee0);
});
}
/*** 代码来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/529101.html