VBScript Variables

VBScript Variables :

As with algebra, VBScript variables are accustomed to maintain values or expressions.
A variable can have a quick title, like x, or perhaps a more detailed title, like carname.
Principles for VBScript variable names:

  • Should start out with a letter 
  • Can not include a time (.)
  • Can not surpass 255 characters

In VBScript, all variables are of type plan, that can store several types of data.

Declaring VBScript Variables :

Creating parameters in VBScript is most often called “announcing” variables.
You can declare VBScript parameters with the Poor, Public or the Personal statement. Similar to this:

Dim x
Dim carname


Now you have made two variables. The name of the variables are “x” and “carname “.
You can also declare variables by which consists of name in a script. Such as this:

carname=”Volvo”

So you have made a variable. The name of the variable is “carname “.But, this process is not just a good practice, since you can misspell the variable name later in your software, and that may trigger odd results whenever your software is running.
If you misspell for example the “carname” variable to “carnime”, the software will instantly develop a new variable named “carnime”.  To avoid your software from carrying this out, you can use the Choice Specific statement. This statement makes one to declare your entire parameters with the poor, public or individual statement.
Put the Choice Specific statement on the top of one’s script. Similar to this:

Option Explicit
Dim carname
carname=some value


Assigning Values to Variables :

You assign a value to a variable like this:

carname=”Volvo”
x=10

The variable title is on the remaining part of the appearance and the worthiness you intend to allocate to the variable is on the right. Today the variable “carname” has the worthiness of “Volvo”, and the variable “x” has the worthiness of “10 “.

Lifetime of Variables :

How long a variable exists is their lifetime.
When you declare a variable inside a procedure, the variable can only just be accessed within that procedure. When the process exits, the variable is destroyed. These variables are called regional variables. You can have regional variables with exactly the same title in various procedures, since each is acknowledged just by the process in which it’s declared.
If you declare a variable outside a procedure, most of the procedures in your page may entry it. The duration of these variables begins when they’re declared, and stops once the page is closed.

Array Variables :

An variety variable is used to keep numerous prices within a variable.
In the next example, an variety containing 3 components is reported:

Dim names(2)

The amount shown in the parentheses is 2. We start at zero which means this range includes 3 elements. This is a fixed-size array. You assign knowledge to each of the aspects of the range such as this:

names(0)=”Tove”
names(1)=”Jani”
names(2)=”Stale”


Likewise, the info could be recovered from any factor using the list of this variety factor you want. Similar to this:

mother=names(0)

You can have around 60 dimensions within an array. Multiple dimensions are reported by splitting up the numbers in the parentheses with commas. Here we’ve a two-dimensional variety consisting of 5 lines and 7 articles:

Dim table(4,6)

Leave a Reply

Your email address will not be published. Required fields are marked *