VBScript と Javascript の表示文字列用バイト計算

  VBScript のバイト計算



VBScript では たいていにおいて SHIFT_JIS が前提なので、日本語の扱いとして「全角/半角」を判断したい場合があります。その場合は以下のコードを利用する事ができます

01.REM **********************************************************
02.REM 文字列のバイト計算
03.REM **********************************************************
04.Function ByteLen( strTarget )
05. 
06.    Dim i,nLen,nRet,strMoji,nAsc
07. 
08.    nRet = 0
09. 
10.    nLen = Len( strTarget )
11. 
12.    For i = 1 to nLen
13.        nRet = nRet + 2
14.        strMoji = Mid( strTarget, i, 1 )
15.        nAsc = Asc( strMoji )
16.        if &H0 <= nAsc and nAsc <= &H80 then
17.            nRet = nRet - 1
18.        end if
19.        if &HA0 <= nAsc and nAsc <= &HDF then
20.            nRet = nRet - 1
21.        end if
22.        if &HFD <= nAsc and nAsc <= &HFF then
23.            nRet = nRet - 1
24.        end if
25.    Next
26. 
27.    ByteLen = nRet
28. 
29.End Function

&H0 から &H1F までは、表示目的には必要ありませんが、他の目的では必要な場合がありますコードの判断基準は、IsDBCSLeadByte 関数 という関数でテストした結果を元にしています






  JavaScript のバイト計算



JavaScript は必ずしも SHIFT_JIS を前提にしていません。と言うよりは、Unicode を内部コードとした処理が通常メソッドとして提供されています。



01.alert("\\".charCodeAt(0).toString(16))
02.alert(String.fromCharCode(parseInt("5C",16)))
03.alert("~".charCodeAt(0).toString(16))
04.alert(String.fromCharCode(parseInt("7E",16)))
05. 
06.str = ""
07.for( i = 0x20; i &lt;= 0x7e; i++ ) {
08.    str += String.fromCharCode(i);
09.}
10.alert(str);
11. 
12.str = ""
13.for( i = 0xff61; i &lt;= 0xff9f; i++ ) {
14.    str += String.fromCharCode(i);
15.}
16.alert(str);

このテストを実行するにあたって、Unicode対応 文字コード表 を参考にしました。
コードの範囲で表示文字列としての「半角」が判断できるので以下のようなメソッドをString オブジェクトに追加実装する事ができます。

01.String.prototype.byteLen = function() {
02. 
03.    var str = this.toString();
04.    var len = str.length;
05.    var i,cd,blen=0;
06. 
07.    for( i = 0; i &lt; len; i++ ) {
08.        blen += 2;
09.        cd = str.charCodeAt(i);
10.        if ( 0x20 &lt;= cd &amp;&amp; cd &lt;= 0x7e ) {
11.            blen--;
12.        }
13.        if ( 0xff61 &lt;= cd &amp;&amp; cd &lt;= 0xff9f ) {
14.            blen--;
15.        }
16.    }
17. 
18.    return blen;
19.}
20. 
21.alert("日本語OK".byteLen())













  infoboard   管理者用   





フリーフォントWEBサービス
SQLの窓WEBサービス

SQLの窓フリーソフト

素材

一般WEBツールリンク

SQLの窓

フリーソフト

JSライブラリ