{"id":856,"date":"2019-03-25T17:32:36","date_gmt":"2019-03-25T20:32:36","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/"},"modified":"2019-04-24T16:07:49","modified_gmt":"2019-04-24T19:07:49","slug":"separando-os-caracteres-de-um-texto-utilizando-um-separador","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/","title":{"rendered":"Separando os caracteres de um texto utilizando um separador."},"content":{"rendered":"<div style=\"text-align: justify;\"><span style=\"font-weight: bold;\">Descri\u00e7\u00e3o:<\/span><\/p>\n<p>Uma aplica\u00e7\u00e3o comunica com uma lista ou arquivo onde existem valores separados por um caractere. Exemplo: <span style=\"font-style: italic;\">&#8220;valor1, valor2, valor3, valor4, &#8230;&#8221;<\/span>. Como acessar estes valores independentemente?<\/p>\n<p><span style=\"font-weight: bold;\">Solu\u00e7\u00e3o:<\/span><\/p>\n<p>No evento desejado, utilizar o script abaixo:<\/p><\/div>\n<p>&nbsp;<\/p>\n<table style=\"font-family: Courier New;\" border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"1\" bgcolor=\"#ffffff\">\n<tbody>\n<tr>\n<td><span style=\"font-size: small;\"><span style=\"color: #0000ff;\">Dim <\/span>charPos, inicio, opcao, separador, textoOriginal<\/p>\n<p>Screen.Item(<span style=\"color: #ff0000;\">&#8220;ComboBox1&#8221;<\/span>).Clear()<\/p>\n<p>textoOriginal = Screen.Item(<span style=\"color: #ff0000;\">&#8220;TextBox1&#8221;<\/span>).Value<br \/>\nseparador = Screen.Item(<span style=\"color: #ff0000;\">&#8220;Texto2&#8221;<\/span>).Value<\/p>\n<p>charPos = 1<br \/>\ninicio = charPos<\/p>\n<p><span style=\"color: #0000ff;\">Do While<\/span> charPos < <span style=\"color: #990099;\">Len<\/span>(textoOriginal)<\/p>\n<p>opcao = <span style=\"color: #ff0000;\">&#8220;&#8221;<\/span><\/p>\n<p><span style=\"color: #0000ff;\">if <\/span><span style=\"color: #990099;\">Mid<\/span>(textoOriginal, charPos, 1) = separador <span style=\"color: #0000ff;\">Then<\/span><br \/>\nopcao = <span style=\"color: #990099;\">Mid<\/span>(textoOriginal, inicio, charpos &#8211; inicio)<br \/>\nopcao = <span style=\"color: #990099;\">Trim<\/span>(opcao)<br \/>\ninicio = charPos + 1<br \/>\n<span style=\"color: #0000ff;\">End If<\/span><\/p>\n<p>charPos = charPos + 1<\/p>\n<p><span style=\"color: #0000ff;\">if <\/span>charPos = <span style=\"color: #990099;\">Len<\/span>(textoOriginal) <span style=\"color: #0000ff;\">Then<\/span><br \/>\nopcao = <span style=\"color: #990099;\">Mid<\/span>(textoOriginal, inicio, charpos &#8211; inicio + 1)<br \/>\nopcao = <span style=\"color: #990099;\">Trim<\/span>(opcao)<br \/>\n<span style=\"color: #0000ff;\">End If<\/span><\/p>\n<p><span style=\"color: #0000ff;\">if<\/span> opcao <> <span style=\"color: #ff0000;\">&#8220;&#8221;<\/span> <span style=\"color: #0000ff;\">Then<\/span><br \/>\nScreen.Item(<span style=\"color: #ff0000;\">&#8220;ComboBox1&#8221;<\/span>).AddItem opcao<br \/>\n<span style=\"color: #0000ff;\">End if<\/span><br style=\"color: #0000ff;\" \/><span style=\"color: #0000ff;\">Loop <\/span><\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Para ver o c\u00f3digo comentado e funcionando, baixe a aplica\u00e7\u00e3o exemplo anexa a este artigo.<\/p>\n<h3>Anexos:<\/h3>\n<p><a href=\"\/wp-content\/uploads\/2019\/03\/SeparaVirgula.zip\">SeparaVirgula.zip<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Descri\u00e7\u00e3o: Uma aplica\u00e7\u00e3o comunica com uma lista ou arquivo onde existem valores separados por um caractere. Exemplo: &#8220;valor1, valor2, valor3, valor4, &#8230;&#8221;. Como acessar estes valores independentemente? Solu\u00e7\u00e3o: No evento&hellip;<\/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":[610],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Separando os caracteres de um texto utilizando um separador. - 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\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Separando os caracteres de um texto utilizando um separador.\" \/>\n<meta property=\"og:description\" content=\"Descri\u00e7\u00e3o: Uma aplica\u00e7\u00e3o comunica com uma lista ou arquivo onde existem valores separados por um caractere. Exemplo: &#8220;valor1, valor2, valor3, valor4, &#8230;&#8221;. Como acessar estes valores independentemente? Solu\u00e7\u00e3o: No evento&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/\" \/>\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:32:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-04-24T19:07:49+00:00\" \/>\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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/\"},\"author\":{\"name\":\"Elipse Software\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\"},\"headline\":\"Separando os caracteres de um texto utilizando um separador.\",\"datePublished\":\"2019-03-25T20:32:36+00:00\",\"dateModified\":\"2019-04-24T19:07:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/\"},\"wordCount\":150,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Scripts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/\",\"name\":\"[:pt]Separando os caracteres de um texto utilizando um separador.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:32:36+00:00\",\"dateModified\":\"2019-04-24T19:07:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Separando os caracteres de um texto utilizando um separador.\"}]},{\"@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":"Separando os caracteres de um texto utilizando um separador. - 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\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Separando os caracteres de um texto utilizando um separador.[:] - Elipse Knowledgebase","og_description":"Descri\u00e7\u00e3o: Uma aplica\u00e7\u00e3o comunica com uma lista ou arquivo onde existem valores separados por um caractere. Exemplo: &#8220;valor1, valor2, valor3, valor4, &#8230;&#8221;. Como acessar estes valores independentemente? Solu\u00e7\u00e3o: No evento&hellip;","og_url":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:32:36+00:00","article_modified_time":"2019-04-24T19:07:49+00:00","author":"Elipse Software","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elipse Software","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/"},"author":{"name":"Elipse Software","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87"},"headline":"Separando os caracteres de um texto utilizando um separador.","datePublished":"2019-03-25T20:32:36+00:00","dateModified":"2019-04-24T19:07:49+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/"},"wordCount":150,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Scripts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/","url":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/","name":"[:pt]Separando os caracteres de um texto utilizando um separador.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:32:36+00:00","dateModified":"2019-04-24T19:07:49+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/separando-os-caracteres-de-um-texto-utilizando-um-separador\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Separando os caracteres de um texto utilizando um separador."}]},{"@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\/856"}],"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=856"}],"version-history":[{"count":1,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/856\/revisions"}],"predecessor-version":[{"id":5429,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/856\/revisions\/5429"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=856"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=856"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=856"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}