Funzione VBScript UBound
La funzione UBound restituisce l'indice più grande della matrice specificata. Quindi, questo valore corrisponde alla dimensione dell'array.
Sintassi
UBound(ArrayName[,dimension])
ArrayName, un parametro obbligatorio. Questo parametro corrisponde al nome dell'array.
dimension, un parametro facoltativo. Ciò accetta un valore intero che corrisponde alla dimensione della matrice. Se è "1", restituisce il limite inferiore della prima dimensione; se è "2", restituisce il limite inferiore della seconda dimensione e così via.
Esempio
<!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("The Largest Subscript value of the given array is : " & UBound(arr))
' For MultiDimension Arrays :
Dim arr2(3,2)
document.write(
"The Largest Subscript of the first dimension of arr2 is : " & UBound(arr2,1) & "<br />")
document.write(
"The Largest Subscript of the Second dimension of arr2 is : " & UBound(arr2,2) & "<br />")
</script>
</body>
</html>
Quando il codice sopra viene salvato come .HTML ed eseguito in Internet Explorer, produce il seguente risultato:
The Largest Subscript value of the given array is : 5
The Largest Subscript of the first dimension of arr2 is : 3
The Largest Subscript of the Second dimension of arr2 is : 2