{"id":1352,"date":"2019-03-25T17:34:43","date_gmt":"2019-03-25T20:34:43","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/"},"modified":"2020-02-20T15:14:09","modified_gmt":"2020-02-20T18:14:09","slug":"nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/","title":{"rendered":"No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 &#8211; Arrays."},"content":{"rendered":"<p>Algumas vezes \u00e9 conveniente atribuir mais de um valor relacionado a uma \u00fanica vari\u00e1vel. Para isso, pode-se criar uma vari\u00e1vel que cont\u00e9m uma s\u00e9rie de valores, uma vari\u00e1vel do tipo array, ou vetor.<\/p>\n<p>Para declarar uma vari\u00e1vel explicitamente, utiliza-se o comando Dim. A declara\u00e7\u00e3o de um array utiliza par\u00eanteses contendo sua dimens\u00e3o.<\/p>\n<p>Exemplo:<\/p>\n<p><span style=\"font-family: Courier New; background-color: #cccccc;\">Dim A(10)<\/span><\/p>\n<p>Pode-se atribuir dados a cada um dos elementos de um array usando-se um \u00edndice come\u00e7ando do zero e terminando no tamanho declarado (o n\u00famero de elementos do array \u00e9 sempre o n\u00famero mostrado nos par\u00eanteses mais um).<\/p>\n<p>Exemplo:<\/p>\n<p><span style=\"font-family: Courier New; background-color: #cccccc;\">A(0) = 256<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">A(1) = 324<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">A(2) = 100<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">&#8230;<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">A(10) = 55<\/span><\/p>\n<p>Tamb\u00e9m \u00e9 poss\u00edvel criar um array utilizando o m\u00e9todo Array(arglist) do VBScript. Este comando retorna uma vari\u00e1vel do tipo Variant que cont\u00e9m um array. Os valores dever\u00e3o ser separados por v\u00edrgula.<\/p>\n<p>Exemplo:<\/p>\n<p><span style=\"font-family: Courier New; background-color: #cccccc;\">A = Array(10,20,30) <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">MsgBox A(0)<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">MsgBox A(1)<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">MsgBox A(2)<\/span><\/p>\n<p><span style=\"color: #990099; font-weight: bold; font-size: large;\">Split(expression, [delimiter], [count], [compare])<\/span><\/p>\n<p>Retorna um array unidimensional baseada em zero, contendo um n\u00famero especificado de substrings.<br \/>\n<span style=\"font-weight: bold;\">Expression<\/span>: Obrigat\u00f3rio. Express\u00e3o de String contendo subseq\u00fc\u00eancias e delimitadores.<br \/>\n<span style=\"font-weight: bold;\">Delimiter<\/span>: Opcional. Qualquer caractere singular usado para identificar limites subseq\u00fc\u00eancia de caracteres. Se Delimiter for omitido, o caractere de espa\u00e7o (&#8221; &#8220;) \u00e9 assumido como o delimitador.<br \/>\n<span style=\"font-weight: bold;\">Count<\/span>: Opcional. N\u00famero m\u00e1ximo de substrings no qual a seq\u00fc\u00eancia de caracteres de entrada deve ser dividida. O padr\u00e3o, &#8211; 1, indica que a seq\u00fc\u00eancia de caracteres de entrada deve ser dividida em cada ocorr\u00eancia da seq\u00fc\u00eancia Delimiter.<br \/>\n<span style=\"font-weight: bold;\">Compare<\/span>: Opcional. Valor num\u00e9rico indicando a compara\u00e7\u00e3o para usar ao avaliar substrings.<\/p>\n<p>Exemplo:<\/p>\n<pre><span style=\"font-family: Courier New; background-color: #cccccc;\">MyString = \"Os que muito falam, pouco fazem de bom\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">MyArray = Split(MyString, \" \")<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(0) contem \"Os\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(1) contem \"que\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(2) contem \"muito\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(3) contem \"falam,\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(4) contem \"pouco\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(5) contem \"fazem\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(6) contem \"de\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">' MyArray(7) contem \"bom.\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">for i=0 to 7<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">\u00a0\u00a0\u00a0 MsgBox MyArray(i)<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">Next<\/span><\/pre>\n<p><span style=\"color: #990099; font-weight: bold; font-size: large;\">UBound(arrayname)<\/span><\/p>\n<p>Retorna a dimens\u00e3o do array (arrayname).<\/p>\n<p>Exemplo:<\/p>\n<p><span style=\"font-family: Courier New; background-color: #cccccc;\">Dim MyArray(3)<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">MsgBox UBound(MyArray)<\/span><\/p>\n<p>Aparece uma caixa de mensagem com o valor 3.<\/p>\n<p><span style=\"font-weight: bold; font-size: large;\"><span style=\"color: #990099;\">Configura\u00e7\u00e3o de Driver em execu\u00e7\u00e3o<\/span><\/span><\/p>\n<p>Para modificar em execu\u00e7\u00e3o qualquer propriedade do dialog do driver de comunica\u00e7\u00e3o deve ser criado um array com os par\u00e2metros que deseja alterar. Os mais comuns s\u00e3o:<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2102\/fig_013.bmp\" alt=\"\" width=\"380\" height=\"125\" align=\"bottom\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\">Figura 13<\/span><\/div>\n<p>Exemplo:<\/p>\n<pre><span style=\"font-family: Courier New; background-color: #cccccc;\">Dim arr(6)<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">'configura os elementos do array <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">arr(1) = \"IO.Type\" <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">arr(2) = \"Serial\" <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">arr(3) = \"IO.Serial.Port\" <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">arr(4) = 1 <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">arr(5) = \"IO.serial.BaudRate\" <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">arr(6) = 19200 <\/span><\/pre>\n<p>Um jeito mais elegante de escrever seria:<\/p>\n<pre><span style=\"background-color: #cccccc; font-family: Courier New;\">Dim arr(3)<\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">arr(1) = Array(\"IO.Type\", \"Serial\") <\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">arr(2) = Array(\"IO.Serial.Port\", 1) <\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">arr(3) = Array(\"IO.serial.BaudRate\", 19200)<\/span><\/pre>\n<p><span style=\"color: #3366ff; font-weight: bold; font-style: italic; font-size: large;\">Exerc\u00edcios:<\/span><\/p>\n<p>1. Ao clique de um bot\u00e3o, crie um array com todos os dias da semana. Guarde o array em um tag interno.<br \/>\n2. Ao clicar em um bot\u00e3o, leia cada posi\u00e7\u00e3o do array criado no exerc\u00edcio anterior e exiba cada um em uma caixa de mensagem. Para saber o tamanho do array, use o comando UBound.<br \/>\n3. Insira uma lista (Listbox). No OnStartRunning digite o seguinte script:<\/p>\n<pre><span style=\"font-family: Courier New; background-color: #cccccc;\">'Preenche a ListBox<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">\u00a0\u00a0\u00a0 Clear()<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">\u00a0\u00a0\u00a0 AddItem \"Manh\u00e3,Tarde,Noite\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">\u00a0\u00a0\u00a0 AddItem \"violeta;anil;azul;verde;amarelo;laranja;vermelho\"<\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">\u00a0\u00a0\u00a0 AddItem \"1;2;3;4\"<\/span><\/pre>\n<p>4. Crie um bot\u00e3o que separe cada palavra e exiba-as em uma caixa de mensagem. Cuidado que cada linha cont\u00e9m uma quantidade diferente de palavras.<br \/>\n5. Escreva o array necess\u00e1rio para configurar o driver com os seguintes par\u00e2metros:<br \/>\na) Ethernet\u00a0 \/\u00a0 127.0.0.1\u00a0 \/\u00a0\u00a0 Porta 502<br \/>\nb) Serial\u00a0 \/\u00a0 COM1\u00a0 \/\u00a0 Baudrate 19200<\/p>\n<h3>Anexos:<\/h3>\n<p><a href=\"\/wp-content\/uploads\/2019\/03\/Licao8.zip\">Licao8.zip<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Algumas vezes \u00e9 conveniente atribuir mais de um valor relacionado a uma \u00fanica vari\u00e1vel. Para isso, pode-se criar uma vari\u00e1vel que cont\u00e9m uma s\u00e9rie de valores&#8230;<br \/>\nAutor<br \/>\nPaula Pereira En\u00e9as<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[578,610],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 - Arrays.[:] - Elipse Knowledgebase<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 - Arrays.\" \/>\n<meta property=\"og:description\" content=\"Algumas vezes \u00e9 conveniente atribuir mais de um valor relacionado a uma \u00fanica vari\u00e1vel. Para isso, pode-se criar uma vari\u00e1vel que cont\u00e9m uma s\u00e9rie de valores... Autor Paula Pereira En\u00e9as\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-25T20:34:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-02-20T18:14:09+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2102\/fig_013.bmp\" \/>\n<meta name=\"author\" content=\"Elipse Software\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elipse Software\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/\"},\"author\":{\"name\":\"Elipse Software\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\"},\"headline\":\"No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 &#8211; Arrays.\",\"datePublished\":\"2019-03-25T20:34:43+00:00\",\"dateModified\":\"2020-02-20T18:14:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/\"},\"wordCount\":475,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Elipse E3\",\"Scripts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/\",\"url\":\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/\",\"name\":\"[:pt]No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 - Arrays.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:34:43+00:00\",\"dateModified\":\"2020-02-20T18:14:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 &#8211; Arrays.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\",\"name\":\"Elipse Software\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g\",\"caption\":\"Elipse Software\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/webmasterelipse-com-br\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 - Arrays.[:] - Elipse Knowledgebase","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":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 - Arrays.[:] - Elipse Knowledgebase","og_description":"[:pt]Algumas vezes \u00e9 conveniente atribuir mais de um valor relacionado a uma \u00fanica vari\u00e1vel. Para isso, pode-se criar uma vari\u00e1vel que cont\u00e9m uma s\u00e9rie de valores... Autor Paula Pereira En\u00e9as[:]","og_url":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:34:43+00:00","article_modified_time":"2020-02-20T18:14:09+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2102\/fig_013.bmp"}],"author":"Elipse Software","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elipse Software","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/"},"author":{"name":"Elipse Software","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87"},"headline":"No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 &#8211; Arrays.","datePublished":"2019-03-25T20:34:43+00:00","dateModified":"2020-02-20T18:14:09+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/"},"wordCount":475,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Elipse E3","Scripts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/","url":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/","name":"[:pt]No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 - Arrays.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:34:43+00:00","dateModified":"2020-02-20T18:14:09+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/nocoes-de-vbscript-no-software-elipse-e3-licao-8-arrays\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"No\u00e7\u00f5es de VBScript no Software Elipse E3: Li\u00e7\u00e3o 8 &#8211; Arrays."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87","name":"Elipse Software","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g","caption":"Elipse Software"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/webmasterelipse-com-br\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/1352"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=1352"}],"version-history":[{"count":4,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/1352\/revisions"}],"predecessor-version":[{"id":7493,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/1352\/revisions\/7493"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=1352"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=1352"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=1352"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}