最新のWeb開発のチュートリアル
 

VBScriptのAsc関数


<コンプリートVBScriptのリファレンス

Asc関数は、ANSIコードの文字列の最初の文字を変換し、結果を返します。

構文

Asc(string)

パラメーター 説明
string 必須。 文字列式。 空の文字列にすることはできません!

例1

<%

response.write(Asc("A") & "<br />")
response.write(Asc("a") & "<br />")
response.write(Asc("F") & "<br />")
response.write(Asc("f") & "<br />")
response.write(Asc("2") & "<br />")
response.write(Asc("#") & "<br />")

%>

上記のコードの出力は次のようになります。

65
97
70
102
50
35
表示例»

例2

ASCが文字列の最初の文字だけのANSIコードを返します。

<%

response.write(Asc("W") & "<br />")
response.write(Asc("w3ii.com"))

%>

上記のコードの出力は次のようになります。

87
87
表示例»

例3

どのように文字列のすべての文字のANSIコードを返します:

<%

txt="w3ii.com"
for i=1 to len(txt)
   response.write(Asc(mid(txt,i,1)) & "<br />")
next

%>

上記のコードの出力は次のようになります。

87
51
115
99
104
111
111
108
115
46
99
111
109
表示例»

<コンプリートVBScriptのリファレンス