Funzione VBScript LBound
La funzione LBound restituisce il più piccolo indice dell'array specificato. Quindi, LBound di un array è ZERO.
Sintassi
LBound(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 smallest Subscript value of the given array is : " & LBound(arr))
' For MultiDimension Arrays :
Dim arr2(3,2)
document.write(
"The smallest Subscript of the first dimension of arr2 is : " & LBound(arr2,1) & "<br />")
document.write(
"The smallest Subscript of the Second dimension of arr2 is : " & LBound(arr2,2) & "<br />")
</script>
</body>
</html>
Quando il codice sopra viene salvato come .html ed eseguito in Internet Explorer, produce il seguente risultato -
The smallest Subscript value of the given array is : 0
The smallest Subscript of the first dimension of arr2 is : 0
The smallest Subscript of the Second dimension of arr2 is : 0