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

VBScriptの10月関数


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

10月関数は、指定された数の8進数値を表す文字列を返します。

Note:番号が既に整数でない場合は、それが評価される前に最も近い整数に丸められます。

構文

Oct(number)

パラメーター 説明
number 必須。 任意の有効な式

数がある場合:

  • ヌル - その後、10月の関数はNULLを返します。
  • 空-次いで10月関数は0を返す(0)
  • その他の数 - その後、10月関数は11進文字まで戻ります。

<%

response.write(Oct(3) & "<br />")
response.write(Oct(5) & "<br />")
response.write(Oct(9) & "<br />")
response.write(Oct(10) & "<br />")
response.write(Oct(11) & "<br />")
response.write(Oct(12) & "<br />")
response.write(Oct(400) & "<br />")
response.write(Oct(459) & "<br />")
response.write(Oct(460) & "<br />")

%>

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

3
5
11
12
13
14
620
713
714
表示例»

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