取得输入字符的字节长度
时间:2005-06-28 来源:bandt
主要用于客户端或者服务器端检验输入的字符长度。
{
int iLen = 0;
iLen = System.Text.Encoding.Default.GetByteCount(sText.Trim());
return iLen;
}
4.客户端检验中英文混杂的字符长度:
String.prototype.len=function()
{
var str=this;
return str.replace(/[^x00-xff]/g, "**").length
}
1.匹配双字节字符的ER:[^x00-xff]
2.只能包含字母数字中文的ER:^[a-zA-Z0-9u4e00-u9fa5]
3.取得输入字符的字节长度:
{
int iLen = 0;
iLen = System.Text.Encoding.Default.GetByteCount(sText.Trim());
return iLen;
}
4.客户端检验中英文混杂的字符长度:
String.prototype.len=function()
{
var str=this;
return str.replace(/[^x00-xff]/g, "**").length
}
相关阅读 更多 +