项目要求: 计算一个字符串的长度(对日项目VB.NET) 以前的代码找不到了只能自己写一下了(找到了别人的代码觉得有点麻烦,没用) String.prototype.isBytes = function() { public static boolean checkHANKAKU_KANA(char ch) { 后来朋友又发给我了一个段代码,如下 文字列をバイト配列に変換 エンコーディングを取得 (シフトJISコードページ) コードページをUnicodeからシフトJISに変換 Return byEncoded.Length End Function Public Function ChkByteLength(ByVal p_strVal As String, ByVal p_strParam As String, ByVal p_nMaxLength As Integer, Optional ByVal p_nMinLength As Integer = 0) As Boolean End If
var cArr = this.match(/[^\x00-\xff|\uff61-\uff9f]/ig);
return (cArr==null ? true : false);}
上面这段代码是我在JAVA项目里找的,开始没看明白
朋友老纪这时发给我一段
public static boolean checkAscii(char ch) {
// Ascii文字かどうか判断し、返り値とする
return ch >= 0x0000 && ch <= 0x007f;
}
// 半角カタカナかどうか判断し、返り値とする。
return 0xff61 <= ch && ch <= 0xff9f;
}
这时才知道[^\x00-\xff|\uff61-\uff9f]这个正则表达式是匹配英文字符和半角日文之外的字符的
注意里面的这个符号^取反的意思[\x00-\xff|\uff61-\uff9f]里面没有没^就是匹配英文字符和半角日文
加上这个^就是匹配英文字符和半角日文之外的字符
下面这个是我写的VB.NET的方法计算字符串的长度
Public Function GetStringLength(ByVal data As String) As Integer
Dim i As Integer = 0
Dim len As Integer = 0
Dim cc As String = “”
Dim charRegex As New Regex(“[\x00-\xff|\uff61-\uff9f]”)
For i = 0 To data.Length – 1
文字の取得を行う
cc = data.Substring(i, 1)
If charRegex.IsMatch(cc) Then
len = len + 1
Else
len = len + 2
End If
Next i
Return len
End Function
这样就可以计算出字符串的长度了(有不对的地方请指出)
Public Function GetByte(ByVal p_s) As Integer
Dim bySource() As Byte
Dim byEncoded() As Byte
Dim destEncoding As Encoding
bySource = Encoding.Unicode.GetBytes(p_s)
destEncoding = destEncoding.GetEncoding(“Shift_JIS”)
byEncoded = Encoding.Convert(Encoding.Unicode, destEncoding, bySource)
If p_nMinLength > 0 Then
If GetByte(p_strVal) > p_nMaxLength Or GetByte(p_strVal) < p_nMinLength Then
m_aMsg.Add(GetLine() & clsMessage.GetMessage(“E018”, p_strParam, CStr(p_nMinLength), CStr(p_nMaxLength)))
Return False
End If
Else
If GetByte(p_strVal) > p_nMaxLength Then
m_aMsg.Add(GetLine() & clsMessage.GetMessage(“E009”, p_strParam, CStr(p_nMaxLength)))
Return False
End If
Return True
End Function
这两个方法没有试,有兴趣的可以试试
计算字符串长度(关于日文字符) _vb/vb.net教程
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 计算字符串长度(关于日文字符) _vb/vb.net教程
相关推荐
-      alexa:戏曲性地调整_alexa排名
-      alexa排名的影响因素_alexa排名
-      alexa排名全新机制详解_alexa排名
-      alexa排名对新闻类网站的参考作用_alexa排名
-      提高alexa排名的九个方法_alexa排名
-      265步hao123后尘被清空数据,谁来代替alexa排名?_alexa排名
-      hao123 alexa排名恢复仅仅是暂时的_alexa排名
-      alexa部分国内被清零的数据被调整,hao123重现_alexa排名