{"id":20619,"date":"2018-01-08T13:30:48","date_gmt":"2018-01-08T13:30:48","guid":{"rendered":"https:\/\/www.softwaretestinghelp.com\/?page_id=20619"},"modified":"2025-04-01T08:01:44","modified_gmt":"2025-04-01T08:01:44","slug":"vbscript-arrays-tutorial-7","status":"publish","type":"page","link":"https:\/\/www.softwaretestinghelp.com\/vbscript-arrays-tutorial-7\/","title":{"rendered":"VBScript Arrays: Using DIM, REDIM, Split, and Ubound Array Functions"},"content":{"rendered":"\n<p><strong>Introduction to VBScript Arrays:&nbsp;VBScript Tutorial #7<\/strong><\/p>\n\n\n\n<p>In my previous tutorial in the <a href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-tutorial-1\/\" target=\"_blank\" rel=\"noopener\">VBScript tutorial<\/a> series, we discussed <strong>\u2018<a href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-procedures-functions-tutorial-6\/\" target=\"_blank\" rel=\"noopener\">Procedures and Functions<\/a>\u2019 in the VBScript<\/strong>. In this tutorial, I will be discussing the concept of \u2018VBS Arrays<strong>\u2019<\/strong>. One should have a good understanding of the concept of Arrays for better programming experiences.<\/p>\n\n\n\n<p>At times there may be a need to store more than 1 element in a single named memory location and the concept of Arrays comes into the picture to satisfy this requirement.<em><wp-block data-block=\"core\/more\"><\/wp-block><\/em><\/p>\n\n\n\n<p>As we have already learned about Variables in one of the earlier tutorials, it will be easy to understand this concept as an Array is also a variable but with the difference that it can contain more than 1 value at a time.<\/p>\n\n\n\n<p><strong><em>This tutorial gives you a wide knowledge of Arrays, their types, their declaration in VBScript, etc., with simple practical examples for your easy understanding.<\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"1000\" height=\"531\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Arrays-Using-DIM-REDIM-Split-and-Ubound-Array-Functions-1.png\" alt=\"VBScript Arrays Using DIM, REDIM, Split, and Ubound Array Functions\" class=\"wp-image-316038\" style=\"width:700px\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Arrays-Using-DIM-REDIM-Split-and-Ubound-Array-Functions-1.png 1000w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Arrays-Using-DIM-REDIM-Split-and-Ubound-Array-Functions-1-300x159.png 300w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Arrays-Using-DIM-REDIM-Split-and-Ubound-Array-Functions-1-768x408.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is an Array?<\/h3>\n\n\n\n<p><strong>An Array<\/strong> is a variable having a named memory location that serves as a <strong>Container<\/strong> and can hold multiple values in a single location.<\/p>\n\n\n\n<p><em>In short, Arrays group different types of elements together <\/em>in<em> one place.<\/em><\/p>\n\n\n\n<p>Let\u2019s take a real-life <span style=\"text-decoration: underline;\"><strong>example<\/strong><\/span> to understand this better. If you want to store the names of different students in a single place then an Array of string types can be used starting at index 0. If you want to fetch the name of the first student then you can pick the value present at index 0 and so on.<\/p>\n\n\n\n<p><strong>Suggested reading =&gt;&gt; <a href=\"https:\/\/www.softwaretestinghelp.com\/vba-array-tutorial\/\" target=\"_blank\" rel=\"noopener\">Arrays in VBA<\/a><\/strong><\/p>\n\n\n\n<p>Now, let\u2019s move ahead to the next topics to learn how Arrays are declared and used in the script.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Declaration of Arrays in VBScript<\/h3>\n\n\n\n<p>Declaration of an Array can be done in the same manner in which Variables are declared but with the difference that the array variable is declared by using the <strong>parenthesis<\/strong> \u2018()\u2019.<\/p>\n\n\n\n<p><strong>The Dim<\/strong> keyword is used to declare an Array.<\/p>\n\n\n\n<p><strong>Ways to declare an Array:<\/strong><\/p>\n\n\n\n<p>There are 3 ways in which an Array can be declared.<\/p>\n\n\n\n<p><strong>They are as follows:<\/strong><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#1) Way 1: Dim array1()<\/h4>\n\n\n\n<p>Here, array1 is the name of an array and as the parenthesis is empty it means that the size of an array is not defined here.<\/p>\n\n\n\n<p>If you want to declare an array by mentioning its size then it can be done in the following way.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#2) Way 2: Dim array1(5)<\/h4>\n\n\n\n<p>In this, array1 is declared with the size as 5 which states it holds 6 values considering that the index of an array always starts from 0. These 5 values can be of integer type, string, or character types.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#3) Way 3 : array1 = Array(1,2,3,4,5,6)<\/h4>\n\n\n\n<p>Here, Array Function is used to declare an array with a list of arguments inside the parenthesis and all integer values are passed directly inside the parenthesis without any need of mentioning the size of an array.<\/p>\n\n\n\n<p><strong>Note<\/strong>: The index value of an Array can never be a negative value.<\/p>\n\n\n\n<p>Next, let\u2019s discuss how to assign values to an array.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Assignment of Values Inside an Array<\/h3>\n\n\n\n<p>Once an Array is declared, values are assigned to an Array Variable. To assign values, each specific index location is accessed as values are assigned specifically to the index values in an Array.<\/p>\n\n\n\n<p>Taking reference to the second way of declaring an array (as discussed above), let\u2019s see how to assign values to such an array.<\/p>\n\n\n\n<p><strong>Dim array1(5)<\/strong><\/p>\n\n\n\n<p>Here, the size of an array is 6, which means you have to assign 6 values to an array starting at index 0 and ending at 5.<\/p>\n\n\n\n<p><strong>So, the following is the way to do so:<\/strong><\/p>\n\n\n\n<p>array1(0) = \u201chello\u201d<br>array1(1) = 12<br>array1(2) = 13<br>array1(3) = 14<br>array1(4) = 15<br>array1(5) = 16<\/p>\n\n\n\n<p>Each index has one specific value.<\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><strong>Following is an example to show the usage of an Array:<\/strong><\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of an Array&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim array1(5) \narray1(0) = \u201chello\u201d \narray1(1) = 12 \narray1(2) = 13\narray1(3) = \u201chow are you\u201d\narray1(4) = 15\narray1(5) = 16\nFor i = 0 to ubound(array1)\nMsgbox \u201cValue present at index \u201d &amp; i &amp; \u201d is \u201c &amp; array1(i) &amp; \u201c&lt;br \/&gt;\u201d\nNext\n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<p><strong>Output is:<\/strong><\/p>\n\n\n\n<p>Value present at index 0 is hello<br>Value present at index 1 is 12<br>Value present at index 2 is 13<br>Value present at index 3 is how are you<br>Value present at index 4 is 15<br>Value present at index 5 is 16<\/p>\n\n\n\n<p>In the above example, an array of size \u20185\u2019 is declared and the values are assigned to each index which is the combination of integer and string values. Next, using \u2018For loop\u2019, the value present at each index is displayed with the help of a message box. The loop will start from 0 and will go till the unbound i.e. upper bound which is the maximum subscript(5 in this case) of an array.<\/p>\n\n\n\n<p>I will discuss unbound later in this tutorial.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Declaration-Of-Array.jpg\"><img decoding=\"async\" width=\"583\" height=\"520\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Declaration-Of-Array.jpg\" alt=\"Declaration Of Array\" class=\"wp-image-20720\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Declaration-Of-Array.jpg 583w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Declaration-Of-Array-300x268.jpg 300w\" sizes=\"(max-width: 583px) 100vw, 583px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Types of Arrays<\/h3>\n\n\n\n<p>2 types of Arrays are used in the VBScript.<\/p>\n\n\n\n<p><span style=\"color: #000000;\"><strong>They are:<\/strong><\/span><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#1) Single Dimensional Array:<\/h4>\n\n\n\n<p>This is a simple type of array that is used more often in the scripts, than the one which is discussed above<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#2) Multi-Dimensional Array:<\/h4>\n\n\n\n<p>When an array has more than 1 dimension then it is known as a multi-dimensional array. Normally, a <strong>2-dimensional<\/strong> Array is the one which is used most of the time i.e. there will be rows and columns in an array. The maximum dimension of an array can reach up to 60.<\/p>\n\n\n\n<p><em><strong>Let\u2019s understand the workings of a 2 Dimensional Array with the help of a simple example.<\/strong><\/em><\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><em><strong>Example:<\/strong><\/em><\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of a 2 Dimensional Array&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim array1(1,1) \narray1(0,0) = \u201chello\u201d \narray1(0,1) = 12 \narray1(1,0) = \u201chow are you\u201d\narray1(1,1) = 14\nMsgbox \u201cValue present at index 0,0\u201d &amp; \u201d is \u201c &amp; array1(0,0) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox \u201cValue present at index 0,1\u201d &amp; \u201d is \u201c &amp; array1(0,1) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox \u201cValue present at index 1,0\u201d &amp; \u201d is \u201c &amp; array1(1,0) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox \u201cValue present at index 1,1\u201d &amp; \u201d is \u201c &amp; array1(1,1) \n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<p><strong>Output is:<\/strong><\/p>\n\n\n\n<p>Value present at index 0,0 is hello<br>Value present at index 0,1 is 12<br>Value present at index 1,0 is how are you<br>Value present at index 1,1 is 14<\/p>\n\n\n\n<p>In the above example, an array having 2 rows and 2 columns is declared with the size as (1,1) representing values present at the indexes 0 and 1 for both row and column.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Two-Dimentional-Array.jpg\"><img decoding=\"async\" width=\"604\" height=\"486\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Two-Dimentional-Array.jpg\" alt=\"Two Dimensional Array\" class=\"wp-image-20722\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Two-Dimentional-Array.jpg 604w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Two-Dimentional-Array-300x241.jpg 300w\" sizes=\"(max-width: 604px) 100vw, 604px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>Next, let\u2019s understand some of the frequently used concepts of an Array.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Usage of REDIM Statement and PRESERVE Keyword in an Array<\/h3>\n\n\n\n<p><strong>Redim <\/strong>Statement is used to redefine the size of an Array. When the array is declared without any size, then it can be declared again using Redim with the feasibility of specifying the size of an array.<\/p>\n\n\n\n<p><b>The preserve<\/b> keyword is used to preserve the contents of a current array when the size of an array gets changed.<\/p>\n\n\n\n<p><em><strong>Let\u2019s understand the usage of these keywords with the help of a simple example.<\/strong><\/em><\/p>\n\n\n\n<p><em><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Example:<\/span><\/strong><\/span><\/em><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of Redim and Preserve&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim array1()\nREDIM array1(3)\narray1(0) = \u201chello\u201d \narray1(1) = 12 \narray1(2) = 13\narray1(3) = \u201chow are you\u201d\nREDIM PRESERVE array1(5)\narray1(4) = 15\narray1(5) = 16\nFor i = 0 to ubound(array1)\nMsgbox \u201cValue present at index \u201d &amp; i &amp; \u201d is \u201c &amp; array1(i) &amp; \u201c&lt;br \/&gt;\u201d\nNext\n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<p><strong>Output is:<\/strong><\/p>\n\n\n\n<p>Value present at index 0 is hello<br>Value present at index 1 is 12<br>Value present at index 2 is 13<br>Value present at index 3 is how are you<br>Value present at index 4 is 15<br>Value present at index 5 is 16<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Redim-Statement.jpg\"><img decoding=\"async\" width=\"585\" height=\"566\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Redim-Statement.jpg\" alt=\"Redim Statement\" class=\"wp-image-20721\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Redim-Statement.jpg 585w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Redim-Statement-300x290.jpg 300w\" sizes=\"(max-width: 585px) 100vw, 585px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">In-Built Array Functions<\/h3>\n\n\n\n<p>There are various inbuilt functions related to Arras that is supported by the VBScript.<\/p>\n\n\n\n<p><strong>Following is the list:<\/strong><\/p>\n\n\n\n<p><strong>#1) lbound<\/strong>:<\/p>\n\n\n\n<p>This is the opposite of ubound (used above). This returns the smallest integer index value of an array i.e. the smallest subscript of an array.<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Example:<\/span><\/strong> In the above example, the size of an array is 5. Hence, lbound will be 0 as this is the smallest subscript of an array.<\/p>\n\n\n\n<p><strong>#2) ubound<\/strong>:<\/p>\n\n\n\n<p>This is already used above. This returns the largest subscript of a defined array.<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Example<\/span>: <\/strong>In the above example, the size of an array is 5. Hence, in this case, unbound is 5<\/p>\n\n\n\n<p><strong>#3) Split<\/strong>:<\/p>\n\n\n\n<p>This returns an array consisting of several sub-strings and can be split using some delimiter. The syntax of this is: <em>Split(expression,[delimiter])<\/em><\/p>\n\n\n\n<p>Using a delimiter is an optional condition.<\/p>\n\n\n\n<p><strong>#4) Join<\/strong>:<\/p>\n\n\n\n<p>This is the opposite of the Split function. Here, String is returned which includes various substrings in an array and thus joins all the sub-strings into one string.<\/p>\n\n\n\n<p>The <strong>syntax<\/strong> of this is: <em>Join(array,[delimiter]. Using a delimiter is an optional condition.<\/em><\/p>\n\n\n\n<p><strong>#5) IsArray<\/strong>:<\/p>\n\n\n\n<p>This returns True\/False on the basis of a specified variable. If the variable is passed as an Array then True is returned otherwise, False.<\/p>\n\n\n\n<p>The <strong>syntax<\/strong> is: <em>IsArray( array variable)<\/em><\/p>\n\n\n\n<p><strong>#6) Filter<\/strong>:<\/p>\n\n\n\n<p>This returns a subset of an array based on the filter condition i.e. data is filtered based on some condition.<\/p>\n\n\n\n<p>The<strong> syntax<\/strong> is: <em>Filter(array, filter condition)<\/em><\/p>\n\n\n\n<p><em><strong>Let\u2019s see the implementation of these functions with the help of a simple Example.<\/strong><\/em><\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><em><strong><span style=\"text-decoration: underline;\">Example:<\/span><\/strong><\/em><\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of In-Built Array Functions&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim array1 = Array(\u201cJanuary\u201d, \u201dFebruary\u201d, \u201dMarch\u201d, \u201dApril\u201d)\nDim a , b , c , d , e , f\na = lbound(array1)\nb = ubound(array1)\nc = Split(array1,\u201d,\u201d)\nd = Join(array1,\u201d $ \u201c)\ne = IsArray(array1)\nf = Filter(array1,\u201dJ\u201d)\nMsgbox(a) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox(b) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox(c) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox(d) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox(e) &amp; \u201c&lt;br \/&gt;\u201d\nMsgbox(f) \n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<p><strong>Output<\/strong> <strong>is<\/strong>:<\/p>\n\n\n\n<p>0<br>3<br>January February March April<br>January $ February $ March $ April<br>True<br>January<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Array-Function.jpg\"><img decoding=\"async\" width=\"612\" height=\"442\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Array-Function.jpg\" alt=\"Array Function\" class=\"wp-image-20719\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Array-Function.jpg 612w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Array-Function-300x217.jpg 300w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>I hope that this tutorial would have given you a brief overview of Arrays in VBScript. The simple practical examples covered must have made you understand arrays in a better way.<\/p>\n\n\n\n<p><em><strong><a href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-date-functions-tutorial-8\/\" target=\"_blank\" rel=\"noopener\">Next VBScript Tutorial #8<\/a>: Our next tutorial will cover \u2018Date Functions\u2019 in the VBScript.<\/strong><\/em><\/p>\n\n\n\n<p><strong><em>We would be glad to hear about your experience with working on Arrays in VBScript and let us know if you have any queries.<\/em><br><\/strong><\/p>\n\r\n\t\t\t<div id=\"daexthefup-container\"\r\n\t\t\t\tclass=\"daexthefup-container daexthefup-layout-stacked daexthefup-alignment-center\"\r\n\t\t\t\tdata-post-id=\"20619\">\r\n\r\n\t\t\t\t<div class=\"daexthefup-feedback\">\r\n\t\t\t\t\t<div class=\"daexthefup-text\">\r\n\t\t\t\t\t\t<h3 class=\"daexthefup-title\">Was this helpful?<\/h3>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"daexthefup-buttons-container\">\r\n\t\t\t\t\t\t<div class=\"daexthefup-buttons\">\r\n\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-yes daexthefup-button daexthefup-button-type-icon\" data-value=\"1\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-up-cls-1{fill:#c9c9c9;}.thumb-up-cls-2{fill:#e1e1e1;}.thumb-up-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_up\">\r\n                        <path class=\"thumb-up-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-up-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"20\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,9.06l-.49-.1c-.81-.17-1.61.35-1.78,1.16l-5.3,11.74c-.17.81,3.16,1.61,3.97,1.78l1.96.41c.81.17,1.61-.35,1.78-1.16l2.18-10.27c.34-1.61-.7-3.21-2.31-3.56Z\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,20h-18.67c-.83,0-1.5.67-1.5,1.5v12c0,.83.67,1.5,1.5,1.5h16.27c.71,0,1.33-.5,1.47-1.21l2.4-12c.19-.93-.53-1.8-1.47-1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-no daexthefup-button daexthefup-button-type-icon\" data-value=\"0\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-down-cls-1{fill:#c9c9c9;}.thumb-down-cls-2{fill:#e1e1e1;}.thumb-down-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_down\">\r\n                        <path class=\"thumb-down-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-down-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"13\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,38.94l-.49.1c-.81.17-1.61-.35-1.78-1.16l-5.3-11.74c-.17-.81,3.16-1.61,3.97-1.78l1.96-.41c.81-.17,1.61.35,1.78,1.16l2.18,10.27c.34,1.61-.7,3.21-2.31,3.56Z\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,28h-18.67c-.83,0-1.5-.67-1.5-1.5v-12c0-.83.67-1.5,1.5-1.5h16.27c.71,0,1.33.5,1.47,1.21l2.4,12c.19.93-.53,1.8-1.47,1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-comment\">\r\n\t\t\t\t\t<div class=\"daexthefup-comment-top-container\">\r\n\t\t\t\t\t\t<label id=\"daexthefup-comment-label\" class=\"daexthefup-comment-label\"><\/label>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-container\">\r\n\t\t\t\t\t\t\t\t<div id=\"daexthefup-comment-character-counter-number\"\r\n\t\t\t\t\t\t\t\t\tclass=\"daexthefup-comment-character-counter-number\"><\/div>\r\n\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-text\"><\/div>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<textarea id=\"daexthefup-comment-textarea\" class=\"daexthefup-comment-textarea\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Type your message\"\r\n\t\t\t\t\t\t\t\tmaxlength=\"\r\n\t\t\t\t\t\t\t\t400\t\t\t\t\t\t\t\t\t\"><\/textarea>\r\n\t\t\t\t\t<div class=\"daexthefup-comment-buttons-container\">\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-submit daexthefup-button\">Submit<\/button>\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-cancel daexthefup-button\">Cancel<\/button>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-successful-submission-text\">Thanks for your feedback!<\/div>\r\n\r\n\t\t\t<\/div>\r\n\r\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>Introduction to VBScript Arrays:&nbsp;VBScript Tutorial #7 In my previous tutorial in the VBScript tutorial series, we discussed \u2018Procedures and Functions\u2019 in the VBScript. In this tutorial, I will be discussing the concept of \u2018VBS Arrays\u2019. One should have a good understanding of the concept of Arrays for better programming experiences. &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"VBScript Arrays: Using DIM, REDIM, Split, and Ubound Array Functions\" class=\"read-more button\" href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-arrays-tutorial-7\/#more-20619\" aria-label=\"Read more about VBScript Arrays: Using DIM, REDIM, Split, and Ubound Array Functions\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":316038,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_helpful_pro_status":1,"footnotes":""},"categories":[406],"tags":[],"class_list":{"0":"post-20619","1":"page","2":"type-page","3":"status-publish","4":"has-post-thumbnail","6":"category-vbscript"},"acf":[],"_links":{"self":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/20619","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/comments?post=20619"}],"version-history":[{"count":0,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/20619\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media\/316038"}],"wp:attachment":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media?parent=20619"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/categories?post=20619"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/tags?post=20619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}