- VBScript 教程
- VBScript - 主页
- VBScript - 概述
- VBScript - 语法
- VBScript - 启用
- VBScript - 放置
- VBScript - 变量
- VBScript - 常量
- VBScript - 运算符
- VBScript - 决策
- VBScript - 循环
- VBScript - 事件
- VBScript - Cookie
- VBScript - 数字
- VBScript - 字符串
- VBScript - 数组
- VBScript - 日期
- VBScript 高级
- VBScript - 过程
- VBScript - 对话框
- VBScript - 面向对象
- VBScript - reg 表达式
- VBScript - 错误处理
- VBScript - 杂项语句
- VBScript 有用资源
- VBScript - 问题与解答
- VBScript - 快速指南
- VBScript - 有用的资源
- VBScript - 讨论
VBScript - 数组
什么是数组?
我们很清楚,变量是存储值的容器。有时,开发人员可以一次在一个变量中保存多个值。当一系列值存储在单个变量中时,它被称为数组变量。
数组声明
数组的声明方式与变量的声明方式相同,只是数组变量的声明使用括号。在以下示例中,括号中提到了数组的大小。
'Method 1 : Using Dim Dim arr1() 'Without Size 'Method 2 : Mentioning the Size Dim arr2(5) 'Declared with size of 5 'Method 3 : using 'Array' Parameter Dim arr3 arr3 = Array("apple","Orange","Grapes")
虽然数组大小显示为 5,但由于数组索引从 0 开始,它可以容纳 6 个值。
数组索引不能为负数。
VBScript 数组可以在数组中存储任何类型的变量。因此,数组可以在单个数组变量中存储整数、字符串或字符。
为数组赋值
通过针对要分配的每个值指定数组索引值,将值分配给数组。它可以是一个字符串。
例子
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> Dim arr(5) arr(0) = "1" 'Number as String arr(1) = "VBScript" 'String arr(2) = 100 'Number arr(3) = 2.45 'Decimal Number arr(4) = #10/07/2013# 'Date arr(5) = #12.45 PM# 'Time document.write("Value stored in Array index 0 : " & arr(0) & "<br />") document.write("Value stored in Array index 1 : " & arr(1) & "<br />") document.write("Value stored in Array index 2 : " & arr(2) & "<br />") document.write("Value stored in Array index 3 : " & arr(3) & "<br />") document.write("Value stored in Array index 4 : " & arr(4) & "<br />") document.write("Value stored in Array index 5 : " & arr(5) & "<br />") </script> </body> </html>
当上述代码保存为 .HTML 并在 Internet Explorer 中执行时,会产生以下结果 -
Value stored in Array index 0 : 1 Value stored in Array index 1 : VBScript Value stored in Array index 2 : 100 Value stored in Array index 3 : 2.45 Value stored in Array index 4 : 7/10/2013 Value stored in Array index 5 : 12:45:00 PM
多维数组
数组不仅限于一维,最多可以有 60 维。二维数组是最常用的数组。
例子
在以下示例中,声明了一个具有 3 行和 4 列的多维数组。
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> Dim arr(2,3) ' Which has 3 rows and 4 columns arr(0,0) = "Apple" arr(0,1) = "Orange" arr(0,2) = "Grapes" arr(0,3) = "pineapple" arr(1,0) = "cucumber" arr(1,1) = "beans" arr(1,2) = "carrot" arr(1,3) = "tomato" arr(2,0) = "potato" arr(2,1) = "sandwitch" arr(2,2) = "coffee" arr(2,3) = "nuts" document.write("Value in Array index 0,1 : " & arr(0,1) & "<br />") document.write("Value in Array index 2,2 : " & arr(2,2) & "<br />") </script> </body> </html>
当上述代码保存为 .HTML 并在 Internet Explorer 中执行时,会产生以下结果 -
Value stored in Array index : 0 , 1 : Orange Value stored in Array index : 2 , 2 : coffee
修正声明
ReDim 语句用于声明动态数组变量并分配或重新分配存储空间。
ReDim [Preserve] varname(subscripts) [, varname(subscripts)]
Preserve - 一个可选参数,用于在更改最后一个维度的大小时保留现有数组中的数据。
varname - 必需参数,表示变量的名称,应遵循标准变量命名约定。
subscripts - 必需参数,指示数组的大小。
例子
在下面的示例中,数组已被重新定义,然后在数组的现有大小更改时保留值。
注意- 将数组大小调整为小于原来大小时,被消除元素中的数据将丢失。
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> Dim a() i = 0 redim a(5) a(0) = "XYZ" a(1) = 41.25 a(2) = 22 REDIM PRESERVE a(7) For i = 3 to 7 a(i) = i Next 'to Fetch the output For i = 0 to ubound(a) Msgbox a(i) Next </script> </body> </html>
当我们将上面的脚本保存为 HTML 并在 Internet Explorer 中执行它时,它会产生以下结果。
XYZ 41.25 22 3 4 5 6 7
数组方法
VBScript 中有各种内置函数可以帮助开发人员有效地处理数组。下面列出了与数组结合使用的所有方法。请点击方法名称了解详细信息。