문자열 길이를 계산하고 중국어로 두 개를 계산합니다.

1423 단어 ExtJs
/*  , 
 * @param str= 
 * @return  
 */
function strLen(str){
    return str.replace(/[^\x00-\xff]/g,"xx").length;
}
 
// : , , ,  
function isQuery(str)
{
	var patrn=/^[a-zA-Z_0-9\u4E00-\u9FA5\s\\(\\)\\.]+$/;
	if (patrn.exec(str)) 
	{
		return true;
	}
	else
	{
		return false;
	}
}
 
// , 
function converturlcode(textValue)
{
		textValue = textValue.replace(/&/g,'&');
		textValue = textValue.replace(/</g,'&lt;');
		textValue = textValue.replace(/>/g,'&gt;');
		textValue = textValue.replace(/\"/g,'&quot;');
		textValue = textValue.replace(/\'/g,'&apos;');
		return textValue;
}
// , 
function convertresponsecode(textValue) 
{
	if(textValue == null){
		return "";
	}
		textValue = textValue.replace(/&apos;/g,'\'');
	    textValue = textValue.replace(/&quot;/g,'\"');
		textValue = textValue.replace(/&gt;/g,'>');
		textValue = textValue.replace(/&lt;/g,'<');
		textValue = textValue.replace(/&amp;/g,'&');
	    return textValue;
}

좋은 웹페이지 즐겨찾기