javascript 将中文符号转换成英文符号
CreateTime--2018年3月30日09:01:29
Author:Marydon
/** * 将中文符号转换成英文符号 */ function chineseChar2englishChar(chineseChar){ // 将单引号‘’都转换成',将双引号“”都转换成" var str = chineseChar.replace(/’|‘/g,"'").replace(/“|”/g,"""); // 将中括号【】转换成[],将大括号{}转换成{} str = str.replace(/【/g,"[").replace(/】/g,"]").replace(/{/g,"{").replace(/}/g,"}"); // 将逗号,转换成,,将:转换成: str = str.replace(/,/g,",").replace(/:/g,":"); return str; }