{"id":11856,"date":"2017-10-12T07:36:01","date_gmt":"2017-10-11T23:36:01","guid":{"rendered":"http:\/\/www.vbtutor.net\/?page_id=11856"},"modified":"2018-06-24T16:29:40","modified_gmt":"2018-06-24T08:29:40","slug":"visual-basic-2013-lesson-10-arrays","status":"publish","type":"page","link":"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-10-arrays\/","title":{"rendered":"Visual Basic 2013 Lesson 10: Creating Arrays"},"content":{"rendered":"<h4 style=\"text-align: center;\"><a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-9-variable-and-constants\/\">[Lesson 9] <\/a>&lt;&lt; <a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-tutorial\/\">[Contents]<\/a> &gt;&gt; <a href=\"http:\/\/www.vbtutor.net\/index.php\/vb2013-lesson-11-performing-mathematical-operations\/\">[Lesson 11]<\/a><\/h4>\n<h3>10.1 Introduction to Arrays<\/h3>\n<p>An array is a group of variables belongs to\u00a0the same data type. When we deal\u00a0with a single item, we only need to declare\u00a0one variable. However, if we have a list of the similar type of data, it is better to declare an array of variables. For example, if we need to enter one thousand\u00a0phone numbers, it would be\u00a0very tedious if we were to declare\u00a0one thousand\u00a0different phone numbers. Therefore, instead of declaring one thousand\u00a0different phone numbers, we need to declare only one array. We can differentiate each phone number in an\u00a0array by using subscript, the index value of each item, for example, phnum(1), phnum(2),phnum(3) &#8230;&#8230;.etc.<\/p>\n<p><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"3914691604\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/p>\n<h3>10.2 The Dimension of an Array<\/h3>\n<p>In VB2013,\u00a0 arrays can be one dimensional or multidimensional. A one-dimensional array resembles a table that comprises one row of items or one column of items.<\/p>\n<p>A multi-dimensional array is a table comprises rows and columns of items. The way to reference an element in a one-dimensional array is <strong>ArrayName(x)<\/strong>, where x is the index or position number of the element. The way to reference an element in a\u00a0two-dimensional array is ArrayName(x,y), where (x,y) is the index of the\u00a0element. Usually, it is sufficient to use a one-dimensional and two-dimensional array, you only need to use higher dimensional arrays if you need to deal with more complex problems. Let&#8217;s examine the arrays in the following tables.<\/p>\n<p><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"3914691604\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/p>\n<h4>Table 10.1: One Dimensional Array<\/h4>\n<table style=\"table-layout: fixed;\">\n<tbody>\n<tr>\n<td>Customer\u00a0Name<\/td>\n<td>Name(0)<\/td>\n<td>Name(1)<\/td>\n<td>Name(2)<\/td>\n<td>Name(3)<\/td>\n<td>Name(4)<\/td>\n<td>Name(5)<\/td>\n<td>Name(6)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>Table 10.2: Two Dimensional Array<\/h4>\n<table>\n<tbody>\n<tr>\n<td>Name(0,0)<\/td>\n<td>Name(0,1)<\/td>\n<td>Name(0,2)<\/td>\n<td>Name(0,3)<\/td>\n<\/tr>\n<tr>\n<td>Name(1,0)<\/td>\n<td>Name(1,1)<\/td>\n<td>Name(1,2)<\/td>\n<td>Name(1,3)<\/td>\n<\/tr>\n<tr>\n<td>Name(2,0)<\/td>\n<td>Name(2,1)<\/td>\n<td>Name(2,2)<\/td>\n<td>Name(2,3)<\/td>\n<\/tr>\n<tr>\n<td>Name(3,0)<\/td>\n<td>Name(3,1)<\/td>\n<td>Name(3,2)<\/td>\n<td>Name(3,3)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>10.2 Declaring an Array<\/h3>\n<p>We use <strong>Public<\/strong> or <strong>Dim<\/strong> statement to declare an array ,similar to the way we declare a single variable. The Public statement declares an array that can be used throughout an application while the Dim statement declares an array that can be used only in a local procedure .<\/p>\n<p>The statement to declare a one-dimensional array is as follows:<\/p>\n<pre style=\"font-size: 110%;\">Dim arrayName(n) as dataType<\/pre>\n<p>where n indicates the last index in the array. Note that n does not indicate the total number of elements in the array, it is one less than the total number of elements (n-1) because the first element is always the zeroth element. The first element is arrayName(0), the second element is arrayName(1), the third element is\u00a0arrayName(2) and so on. The number of elements in an array is also known as length, we can retrieve the length of an array using the syntax\u00a0<strong>arrayName.length\u00a0<\/strong><\/p>\n<p>For example,<\/p>\n<pre style=\"font-size: 110%;\">Dim CusName(10) as String\r\n<\/pre>\n<p>declares an array that comprises\u00a011 elements starting from CusName(0) through to CusName(10)<\/p>\n<p>To determine the length of an\u00a0array, you can write the following code:<\/p>\n<h4><strong>Example 10.1<\/strong><\/h4>\n<pre style=\"font-size: 110%;\">Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load\r\nDim CusName(10) As String\r\n MsgBox(CusName.Length)\r\nEnd Sub\r\n<\/pre>\n<p>Running the program produces a message box that displays the length of the array i.e. 11, as shown in Figure 10.1<\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4416\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg\" alt=\"vb2013_figure10.1\" width=\"154\" height=\"155\" \/><\/a>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <strong>Figure 10.1<\/strong><\/p>\n<p>We can\u00a0also declare an array with a non-zero starting index by initializing an index value other than zero, as follows:<\/p>\n<pre style=\"font-size: 110%;\">Dim arrayname As DataType()\r\n arrayName=New String(){1,2,3,....,n)\r\n<\/pre>\n<p>This array will consist of n elements, starting with arrayName(1)<\/p>\n<h4><strong>\u00a0Example 10.2<\/strong><\/h4>\n<pre style=\"font-size: 110%;\">Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load\r\nDim CusName As String()\r\n CusName = New String() {1, 2, 3}\r\n MsgBox(CusName.Length)\r\nEnd Sub\r\n<\/pre>\n<p>The message box displays the length as 3<\/p>\n<p>&nbsp;<\/p>\n<p>The statement to declare a two-dimensional array is as follow:<\/p>\n<pre style=\"font-size: 110%;\">Dim ArrayName(m,n) as dataType<\/pre>\n<p>where m and n indicate the last indices in the array. The length of the array is (m+1)x(n+1)<\/p>\n<h4><strong>Example 10.3<\/strong><\/h4>\n<pre style=\"font-size: 110%;\">Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load\r\nDim CusName(5,6) As String\r\n MsgBox(CusName.Length)\r\nEnd Sub\r\n<\/pre>\n<p>Running the program and the message box displays a length of 42, as shown in Figure 10.2<\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.2.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4425\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.2.jpg\" alt=\"vb2013_figure10.2\" width=\"154\" height=\"155\" \/><\/a>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <strong>\u00a0 Figure 10.2<\/strong><\/p>\n<h4><strong>Example 10.4<\/strong><\/h4>\n<pre style=\"font-size: 110%;\">Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load\r\nDim num As Integer\r\nDim CusName(5) As String\r\n For num = 0 To 5\r\n CusName(num) = InputBox(\"Enter the customer name\", \"Enter Name\")\r\n ListBox1.Items.Add(CusName(num))\r\nNext\r\nEnd Sub\r\n<\/pre>\n<p>This program prompts the user to enter names in an input box for a total of 6 times and the names will be displayed in a list box, as shown in Figure 10.3 and Figure 10.4<\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.3.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4430\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.3.jpg\" alt=\"vb2013_figure10.3\" width=\"369\" height=\"159\" \/><\/a><\/p>\n<p style=\"text-align: center;\"><strong>\u00a0Figure 10.3\u00a0<\/strong><\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.4.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4432\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.4.jpg\" alt=\"vb2013_figure10.4\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p><strong> \u00a0 \u00a0 \u00a0Figure 10.4\u00a0<\/strong><\/p>\n<p><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block;\" data-ad-format=\"autorelaxed\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"2306771905\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/p>\n<h4 style=\"text-align: center;\"><a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-9-variable-and-constants\/\">[Lesson 9]\u00a0<\/a>&lt;&lt;\u00a0<a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-tutorial\/\">[Contents]<\/a>\u00a0&gt;&gt; <a href=\"http:\/\/www.vbtutor.net\/index.php\/vb2013-lesson-11-performing-mathematical-operations\/\">[Lesson 11]<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>[Lesson 9] &lt;&lt; [Contents] &gt;&gt; [Lesson 11] 10.1 Introduction to Arrays An array is a group of variables belongs to\u00a0the same data type. When we deal\u00a0with a single item, we only need to declare\u00a0one variable. However, if we have a list of the similar type of data, it is better to declare an array of &hellip; <a href=\"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-10-arrays\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Visual Basic 2013 Lesson 10: Creating Arrays<\/span><\/a><\/p>\n","protected":false},"author":23013,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-11856","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Visual Basic 2013 Lesson 10: Creating Arrays - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB<\/title>\n<meta name=\"description\" content=\"Visual Basic Tutorial\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Visual Basic 2013 Lesson 10: Creating Arrays - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\" \/>\n<meta property=\"og:description\" content=\"Visual Basic Tutorial\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html\" \/>\n<meta property=\"og:site_name\" content=\"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Vbtutor\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-24T08:29:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"154\" \/>\n\t<meta property=\"og:image:height\" content=\"155\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@liewvk\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-10-arrays\/\",\"url\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html\",\"name\":\"Visual Basic 2013 Lesson 10: Creating Arrays - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\",\"isPartOf\":{\"@id\":\"https:\/\/www.vbtutor.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#primaryimage\"},\"image\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg\",\"datePublished\":\"2017-10-11T23:36:01+00:00\",\"dateModified\":\"2018-06-24T08:29:40+00:00\",\"description\":\"Visual Basic Tutorial\",\"breadcrumb\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#primaryimage\",\"url\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg\",\"contentUrl\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg\",\"width\":154,\"height\":155},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vbtutor.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Visual Basic 2013 Lesson 10: Creating Arrays\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vbtutor.net\/#website\",\"url\":\"https:\/\/www.vbtutor.net\/\",\"name\":\"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\",\"description\":\"Start learning Visual Basic from beginner to advanced. Includes VB.NET, VBA, and classic VB tutorials for students and professionals.\",\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Visual Basic 2013 Lesson 10: Creating Arrays - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","description":"Visual Basic Tutorial","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html","og_locale":"en_US","og_type":"article","og_title":"Visual Basic 2013 Lesson 10: Creating Arrays - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","og_description":"Visual Basic Tutorial","og_url":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html","og_site_name":"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","article_publisher":"https:\/\/www.facebook.com\/Vbtutor","article_modified_time":"2018-06-24T08:29:40+00:00","og_image":[{"width":154,"height":155,"url":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@liewvk","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-10-arrays\/","url":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html","name":"Visual Basic 2013 Lesson 10: Creating Arrays - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","isPartOf":{"@id":"https:\/\/www.vbtutor.net\/#website"},"primaryImageOfPage":{"@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#primaryimage"},"image":{"@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#primaryimage"},"thumbnailUrl":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg","datePublished":"2017-10-11T23:36:01+00:00","dateModified":"2018-06-24T08:29:40+00:00","description":"Visual Basic Tutorial","breadcrumb":{"@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#primaryimage","url":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg","contentUrl":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure10.1.jpg","width":154,"height":155},{"@type":"BreadcrumbList","@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_Lesson10.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vbtutor.net\/"},{"@type":"ListItem","position":2,"name":"Visual Basic 2013 Lesson 10: Creating Arrays"}]},{"@type":"WebSite","@id":"https:\/\/www.vbtutor.net\/#website","url":"https:\/\/www.vbtutor.net\/","name":"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","description":"Start learning Visual Basic from beginner to advanced. Includes VB.NET, VBA, and classic VB tutorials for students and professionals.","inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/11856","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/users\/23013"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/comments?post=11856"}],"version-history":[{"count":8,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/11856\/revisions"}],"predecessor-version":[{"id":13065,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/11856\/revisions\/13065"}],"wp:attachment":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/media?parent=11856"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/categories?post=11856"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/tags?post=11856"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}