VBScript - PowerPoint PPT Presentation

1 / 20
About This Presentation
Title:

VBScript

Description:

VBScript Session 2 Dani Vainstein * Dani Vainstein * What we learn last session? Data types. Declaring, assigning and usage of variables. Option Explicit statement. – PowerPoint PPT presentation

Number of Views:59
Avg rating:3.0/5.0
Slides: 21
Provided by: DaniVai7
Category:
Tags: vbscript

less

Transcript and Presenter's Notes

Title: VBScript


1
VBScript
  • Session 2

2
What we learn last session?
  • Data types.
  • Declaring, assigning and usage of variables.
  • Option Explicit statement.
  • VBScript keywords (Null,True )
  • Scope and liftime of variables.
  • Rem statement.

3
Subjets for Session 2
  • Scalar variables and array variables.
  • Redim statement.
  • Preserve statement.
  • Erase statement.
  • Array function.
  • LBound and UBound functions.

4
Scalar Variables and Array Variables
  • Much of the time, you only want to assign a
    single value to a variable you have declared.
  • A variable containing a single value is a scalar
    variable.
  • Other times, it is convenient to assign more than
    one related value to a single variable.
  • Then you can create a variable that can contain a
    series of values.This is called an array
    variable.
  • Array variables and scalar variables are declared
    in the same way, except that the declaration of
    an array variable uses parentheses ( ) following
    the variable name.

5
Scalar Variables and Array Variables
  • In the following example, a single-dimension
    array containing 11 elements is declared
  • Dim A(10)
  • Although the number shown in the parentheses is
    10, all arrays in VBScript are zero-based, so
    this array actually contains 11 elements.
  • In a zero-based array, the number of array
    elements is always the number shown in
    parentheses plus one.
  • This kind of array is called a fixed-size array.

6
Scalar Variables and Array Variables
  • You assign data to each of the elements of the
    array using an index into the array. Beginning at
    zero and ending at 10, data can be assigned to
    the elements of an array as follows

A(0) 256 A(1) 324 A(2) 100 . . . A(10)
55
  • Similarly, the data can be retrieved from any
    element using an index into the particular array
    element you want. For example

SomeVariable A(8)
7
Scalar Variables and Array Variables
  • Arrays aren't limited to a single dimension.
  • You can have as many as 60 dimensions, although
    most people can't comprehend more than three or
    four dimensions.
  • You can declare multiple dimensions by separating
    an array's size numbers in the parentheses with
    commas.
  • In the following example, the MyTeble variable is
    a two-dimensional array consisting of 6 rows and
    11 columns

Dim MyTable(5, 10)
8
Scalar Variables and Array Variables
  • In a two-dimensional array, the first number is
    always the number of rows the second number is
    the number of columns.
  • You can also declare an array whose size changes
    during the time your script is running.
  • This is called a dynamic array. The array is
    initially declared within a procedure using
    either the Dim statement or using the Redim
    statement.

9
ArraysRedim Statement
  • ReDim Preserve varname(subscripts) ,
    varname(subscripts) . . .
  • for a dynamic array, no size or number of
    dimensions is placed inside the parentheses. For
    example Dim MyArray()
  • To use a dynamic array, you must subsequently use
    ReDim to determine the number of dimensions and
    the size of each dimension.
  • A subsequent ReDim statement resizes the array to
    30, but uses the Preserve keyword to preserve the
    contents of the array as the resizing takes
    place.
  • There is no limit to the number of times you can
    resize a dynamic array, although if you make an
    array smaller, you lose the data in the
    eliminated elements.

10
ArraysRedim Statement
  • for a dynamic array, no size or number of
    dimensions is placed inside the parentheses. For
    example

Dim MyArray()
  • To use a dynamic array, you must subsequently use
    ReDim to determine the number of dimensions and
    the size of each dimension.
  • A subsequent ReDim statement resizes the array to
    30, but uses the Preserve keyword to preserve the
    contents of the array as the resizing takes
    place.
  • There is no limit to the number of times you can
    resize a dynamic array, although if you make an
    array smaller, you lose the data in the
    eliminated elements.

11
Preserve Statement
  • Preserves the data in an existing array when you
    change the size of the last dimension.
  • If you use the Preserve keyword, you can resize
    only the last array dimension, and you can't
    change the number of dimensions at all.
  • For example, if your array has only one
    dimension, you can resize that dimension because
    it is the last and only dimension.
  • However, if your array has two or more
    dimensions, you can change the size of only the
    last dimension and still preserve the contents of
    the array

ReDim X(10, 10, 10) . . . ReDim Preserve X(10,
10, 15)
Caution    If you make an array smaller than it
was originally, data in the eliminated elements
is lost.
12
Memory




13
Erase Statement
  • Reinitializes the elements of fixed-size arrays
    and deallocates dynamic-array storage space.
  • Erase array
  • It is important to know whether an array is
    fixed-size (ordinary) or dynamic because Erase
    behaves differently depending on the type of
    array.
  • Erase recovers no memory for fixed-size arrays.
    Erase sets the elements of a fixed array as
    follows
  • Fixed numeric array - Sets each element to zero.
  • Fixed string array - Sets each element to
    zero-length ("").
  • Array of objects - Sets each element to the
    special value Nothing.

14
Erase Statement
  • Erase frees the memory used by dynamic arrays.
  • Before your program can refer to the dynamic
    array again, it must redeclare the array
    variable's dimensions using a ReDim statement.

15
Array Function
  • Returns a Variant containing an array.
  • The required arglist argument is a
    comma-delimited list of values that are assigned
    to the elements of an array contained with the
    Variant.
  • If no arguments are specified, an array of zero
    length is created.

Dim A A Array(10,20,30)
16
LBound Function
  • LBound(arrayname, dimension)
  • Returns the smallest available subscript for the
    indicated dimension of an array.
  • The dimension argument means a whole number
    indicating which dimension's lower bound is
    returned. Use 1 for the first dimension, 2 for
    the second, and so on. If dimension is omitted, 1
    is assumed
  • The lower bound for any dimension is always 0.

17
UBound Function
  • UBound(arrayname, dimension)
  • Returns the largest available subscript for the
    indicated dimension of an array.
  • The dimension argument means a whole number
    indicating which dimension's lower bound is
    returned. Use 1 for the first dimension, 2 for
    the second, and so on. If dimension is omitted, 1
    is assumed
  • The lower bound for any dimension is always 0.

Dim A(100,3,4) UBound (A, 1) 100 UBound (A, 2)
3 UBound (A, 3) 4
18
Lab 2.1
19
Lab 2.1
  • Write a small program
  • Declare using Dim 2 array variables.
  • arr1 size of 5
  • arr2 no size
  • Assign descending values to arr1 (i.e.
    5,4,3,2..0)
  • Resize the first array to 10, no data loss
  • Resize the second array to 5.
  • Print the content of the arrays to the reporter.

20
Make sure to visit us
  • Tutorials
  • Articles
  • Projects
  • And much more
  • www.AdvancedQTP.com
Write a Comment
User Comments (0)
About PowerShow.com