[文字列の長さを取得する(UNICODE)]

文字列の長さ(文字数)を取得します。
バイト単位で取得する場合は、LenB 関数を使用します。

【ソースコード】
[tips0022.vbs]
Option Explicit

Dim strValue    ' 文字列
strValue = "あいうえお"

WScript.Echo "文字列「" & strValue & "」は"
WScript.Echo " " & Len(strValue) & " 文字です。"
WScript.Echo " " & LenB(strValue) & " バイトです。"

【実行結果】
C:\> cscript //NoLogo tips0022.vbs
文字列「あいうえお」は
 5 文字です。
 10 バイトです。