{"id":91,"date":"2007-08-28T16:36:00","date_gmt":"2007-08-28T16:36:00","guid":{"rendered":"http:\/\/www.webmundi.com\/?p=91"},"modified":"2025-03-20T17:07:38","modified_gmt":"2025-03-20T20:07:38","slug":"adicionar-zeros-delphi","status":"publish","type":"post","link":"http:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/","title":{"rendered":"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi"},"content":{"rendered":"

Se voc\u00ea precisa formatar n\u00fameros<\/strong> ou strings<\/strong> adicionando zeros \u00e0 esquerda para atingir um tamanho fixo, pode utilizar a fun\u00e7\u00e3o StrZero<\/code>.<\/p>

Fun\u00e7\u00e3o para Adicionar Zeros<\/h2>

Abaixo est\u00e1 a implementa\u00e7\u00e3o da fun\u00e7\u00e3o otimizada:<\/p>

function StrZero(Zeros: string; Quant: integer): string;\nvar\n  Tamanho: integer;\nbegin\n  Tamanho := Length(Zeros);\n  if Tamanho < Quant then\n    Result := StringOfChar('0', Quant - Tamanho) + Zeros\n  else\n    Result := Zeros;\nend;\n<\/code><\/pre>

Como Funciona?<\/h2>
  1. Calcula o tamanho<\/strong> da string recebida.<\/li>\n\n
  2. Se for menor<\/strong> que o tamanho desejado (Quant<\/code>), adiciona zeros<\/strong> \u00e0 esquerda.<\/li>\n\n
  3. Retorna<\/strong> a string formatada.<\/li><\/ol>

    Exemplo de Uso<\/h2>
    procedure TForm1.Button1Click(Sender: TObject);\nvar\n  Resultado: string;\nbegin\n  Resultado := StrZero('123', 6);\n  ShowMessage(Resultado); \/\/ Sa\u00edda: 000123\nend;\n<\/code><\/pre>

    Benef\u00edcios da Fun\u00e7\u00e3o<\/h2>
    • Evita loops desnecess\u00e1rios<\/strong> (usa StringOfChar<\/code> para efici\u00eancia).<\/li>\n\n
    • Compat\u00edvel com Delphi moderno<\/strong>.<\/li>\n\n
    • \u00datil para formata\u00e7\u00e3o de c\u00f3digos, CPFs, boletos, etc.<\/strong>.<\/li><\/ul>

      <\/p>","protected":false},"excerpt":{"rendered":"

      Se voc\u00ea precisa formatar n\u00fameros ou strings adicionando zeros \u00e0 esquerda para atingir um tamanho fixo, pode utilizar a fun\u00e7\u00e3o…<\/p>\n","protected":false},"author":2,"featured_media":41868,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"categories":[9,13],"tags":[27,28,14],"class_list":["post-91","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-delphi","category-desenvolvimento-de-sistemas","tag-delphi","tag-desenvolvimento-de-sistemas","tag-programacao"],"yoast_head":"\nComo Adicionar Zeros \u00e0 Esquerda de uma String no Delphi<\/title>\n<meta name=\"description\" content=\"Aprenda a adicionar zeros \u00e0 esquerda de uma string no Delphi com uma fun\u00e7\u00e3o eficiente. C\u00f3digo otimizado e passo a passo detalhado.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi\" \/>\n<meta property=\"og:description\" content=\"Aprenda a adicionar zeros \u00e0 esquerda de uma string no Delphi com uma fun\u00e7\u00e3o eficiente. C\u00f3digo otimizado e passo a passo detalhado.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/\" \/>\n<meta property=\"og:site_name\" content=\"WebMundi.com\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/webmundi.net\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/webmundi.net\" \/>\n<meta property=\"article:published_time\" content=\"2007-08-28T16:36:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-20T20:07:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Renato Sanches\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@http:\/\/twitter.com\/webmundi_com\" \/>\n<meta name=\"twitter:site\" content=\"@webmundi_com\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Renato Sanches\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t \"@context\": \"https:\/\/schema.org\",\n\t \"@graph\": [\n\t {\n\t \"@type\": \"Article\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Renato Sanches\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0\"\n\t },\n\t \"headline\": \"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi\",\n\t \"datePublished\": \"2007-08-28T16:36:00+00:00\",\n\t \"dateModified\": \"2025-03-20T20:07:38+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/\"\n\t },\n\t \"wordCount\": 97,\n\t \"commentCount\": 0,\n\t \"publisher\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"keywords\": [\n\t \"Delphi\",\n\t \"Desenvolvimento de sistemas\",\n\t \"Programa\u00e7\u00e3o\"\n\t ],\n\t \"articleSection\": [\n\t \"Delphi\",\n\t \"Desenvolvimento de Software\"\n\t ],\n\t \"inLanguage\": \"pt-BR\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"CommentAction\",\n\t \"name\": \"Comment\",\n\t \"target\": [\n\t \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#respond\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/\",\n\t \"name\": \"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#website\"\n\t },\n\t \"primaryImageOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"datePublished\": \"2007-08-28T16:36:00+00:00\",\n\t \"dateModified\": \"2025-03-20T20:07:38+00:00\",\n\t \"description\": \"Aprenda a adicionar zeros \u00e0 esquerda de uma string no Delphi com uma fun\u00e7\u00e3o eficiente. C\u00f3digo otimizado e passo a passo detalhado.\",\n\t \"breadcrumb\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#breadcrumb\"\n\t },\n\t \"inLanguage\": \"pt-BR\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"ReadAction\",\n\t \"target\": [\n\t \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"pt-BR\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage\",\n\t \"url\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"contentUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"width\": 1920,\n\t \"height\": 1080,\n\t \"caption\": \"Dicas de Delphi - Desenvolvimento de Software\"\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#breadcrumb\",\n\t \"itemListElement\": [\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 1,\n\t \"name\": \"Home\",\n\t \"item\": \"https:\/\/localhost\/cmswebmundicom\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 2,\n\t \"name\": \"Desenvolvimento de Software\",\n\t \"item\": \"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 3,\n\t \"name\": \"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi\"\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebSite\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#website\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/\",\n\t \"name\": \"WebMundi.com\",\n\t \"description\": \"Site e Canal YouTube com Dicas e Tutoriais sobre Tecnologia\",\n\t \"publisher\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\"\n\t },\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"SearchAction\",\n\t \"target\": {\n\t \"@type\": \"EntryPoint\",\n\t \"urlTemplate\": \"https:\/\/localhost\/cmswebmundicom\/?s={search_term_string}\"\n\t },\n\t \"query-input\": {\n\t \"@type\": \"PropertyValueSpecification\",\n\t \"valueRequired\": true,\n\t \"valueName\": \"search_term_string\"\n\t }\n\t }\n\t ],\n\t \"inLanguage\": \"pt-BR\"\n\t },\n\t {\n\t \"@type\": \"Organization\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\",\n\t \"name\": \"Web Mundi : Tecnologia\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/\",\n\t \"logo\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"pt-BR\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg\",\n\t \"contentUrl\": \"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg\",\n\t \"width\": 295,\n\t \"height\": 73,\n\t \"caption\": \"Web Mundi : Tecnologia\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/\"\n\t },\n\t \"sameAs\": [\n\t \"http:\/\/www.facebook.com\/webmundi.net\",\n\t \"https:\/\/x.com\/webmundi_com\",\n\t \"https:\/\/www.instagram.com\/webmundi\/\",\n\t \"http:\/\/www.pinterest.com\/webmundi\",\n\t \"https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og\"\n\t ]\n\t },\n\t {\n\t \"@type\": \"Person\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0\",\n\t \"name\": \"Renato Sanches\",\n\t \"description\": \"Executivo Tecnologia da Informa\u00e7\u00e3o | Gerente | Projetos | Infraestrutura | Sistemas | Desenvolvimento | Banco de Dados | Fundador Web Mundi | Propriet\u00e1rio XP IT Tecnologia\",\n\t \"sameAs\": [\n\t \"http:\/\/www.webmundi.com\/\",\n\t \"http:\/\/www.facebook.com\/webmundi.net\",\n\t \"https:\/\/www.instagram.com\/webmundi\/\",\n\t \"https:\/\/www.linkedin.com\/company\/webmundi\/\",\n\t \"http:\/\/www.pinterest.com\/webmundi\",\n\t \"https:\/\/x.com\/http:\/\/twitter.com\/webmundi_com\",\n\t \"https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og\",\n\t \"http:\/\/webmundi.tumblr.com\/\"\n\t ]\n\t }\n\t ]\n\t}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi","description":"Aprenda a adicionar zeros \u00e0 esquerda de uma string no Delphi com uma fun\u00e7\u00e3o eficiente. C\u00f3digo otimizado e passo a passo detalhado.","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:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/","og_locale":"pt_BR","og_type":"article","og_title":"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi","og_description":"Aprenda a adicionar zeros \u00e0 esquerda de uma string no Delphi com uma fun\u00e7\u00e3o eficiente. C\u00f3digo otimizado e passo a passo detalhado.","og_url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/","og_site_name":"WebMundi.com","article_publisher":"http:\/\/www.facebook.com\/webmundi.net","article_author":"http:\/\/www.facebook.com\/webmundi.net","article_published_time":"2007-08-28T16:36:00+00:00","article_modified_time":"2025-03-20T20:07:38+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","type":"image\/jpeg"}],"author":"Renato Sanches","twitter_card":"summary_large_image","twitter_creator":"@http:\/\/twitter.com\/webmundi_com","twitter_site":"@webmundi_com","twitter_misc":{"Escrito por":"Renato Sanches","Est. tempo de leitura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#article","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/"},"author":{"name":"Renato Sanches","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0"},"headline":"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi","datePublished":"2007-08-28T16:36:00+00:00","dateModified":"2025-03-20T20:07:38+00:00","mainEntityOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/"},"wordCount":97,"commentCount":0,"publisher":{"@id":"https:\/\/localhost\/cmswebmundicom\/#organization"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","keywords":["Delphi","Desenvolvimento de sistemas","Programa\u00e7\u00e3o"],"articleSection":["Delphi","Desenvolvimento de Software"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/","url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/","name":"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/#website"},"primaryImageOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","datePublished":"2007-08-28T16:36:00+00:00","dateModified":"2025-03-20T20:07:38+00:00","description":"Aprenda a adicionar zeros \u00e0 esquerda de uma string no Delphi com uma fun\u00e7\u00e3o eficiente. C\u00f3digo otimizado e passo a passo detalhado.","breadcrumb":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#primaryimage","url":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","contentUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","width":1920,"height":1080,"caption":"Dicas de Delphi - Desenvolvimento de Software"},{"@type":"BreadcrumbList","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/adicionar-zeros-delphi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/localhost\/cmswebmundicom\/"},{"@type":"ListItem","position":2,"name":"Desenvolvimento de Software","item":"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/"},{"@type":"ListItem","position":3,"name":"Como Adicionar Zeros \u00e0 Esquerda de uma String no Delphi"}]},{"@type":"WebSite","@id":"https:\/\/localhost\/cmswebmundicom\/#website","url":"https:\/\/localhost\/cmswebmundicom\/","name":"WebMundi.com","description":"Site e Canal YouTube com Dicas e Tutoriais sobre Tecnologia","publisher":{"@id":"https:\/\/localhost\/cmswebmundicom\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/localhost\/cmswebmundicom\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/localhost\/cmswebmundicom\/#organization","name":"Web Mundi : Tecnologia","url":"https:\/\/localhost\/cmswebmundicom\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/","url":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg","contentUrl":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg","width":295,"height":73,"caption":"Web Mundi : Tecnologia"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/webmundi.net","https:\/\/x.com\/webmundi_com","https:\/\/www.instagram.com\/webmundi\/","http:\/\/www.pinterest.com\/webmundi","https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og"]},{"@type":"Person","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0","name":"Renato Sanches","description":"Executivo Tecnologia da Informa\u00e7\u00e3o | Gerente | Projetos | Infraestrutura | Sistemas | Desenvolvimento | Banco de Dados | Fundador Web Mundi | Propriet\u00e1rio XP IT Tecnologia","sameAs":["http:\/\/www.webmundi.com\/","http:\/\/www.facebook.com\/webmundi.net","https:\/\/www.instagram.com\/webmundi\/","https:\/\/www.linkedin.com\/company\/webmundi\/","http:\/\/www.pinterest.com\/webmundi","https:\/\/x.com\/http:\/\/twitter.com\/webmundi_com","https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og","http:\/\/webmundi.tumblr.com\/"]}]}},"_links":{"self":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/91","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/comments?post=91"}],"version-history":[{"count":1,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/91\/revisions"}],"predecessor-version":[{"id":41892,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/91\/revisions\/41892"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media\/41868"}],"wp:attachment":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media?parent=91"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/categories?post=91"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/tags?post=91"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}