{"id":2046,"date":"2023-10-22T20:20:14","date_gmt":"2023-10-22T20:20:14","guid":{"rendered":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/"},"modified":"2023-12-10T06:06:15","modified_gmt":"2023-12-10T06:06:15","slug":"dizi-boyutu","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/","title":{"rendered":"Vba kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?"},"content":{"rendered":"<div class=\"excel-icerikten-once\" id=\"excel-3531516226\"><script type=\"text\/javascript\">\r\n\tatOptions = {\r\n\t\t'key' : 'c1158f160081d6540a8409e6925dab94',\r\n\t\t'format' : 'iframe',\r\n\t\t'height' : 250,\r\n\t\t'width' : 300,\r\n\t\t'params' : {}\r\n\t};\r\n<\/script>\r\n<script type=\"text\/javascript\" src=\"\/\/www.highperformanceformat.com\/c1158f160081d6540a8409e6925dab94\/invoke.js\"><\/script><\/div> <p>VBA&#8217;da bir dizinin uzunlu\u011funu elde etmek, o dizide bulunan \u00f6\u011felerin say\u0131s\u0131n\u0131 saymak anlam\u0131na gelir. Bunun i\u00e7in en d\u00fc\u015f\u00fck elementi ve en y\u00fcksek elementi bilmeniz gerekir. Bunu elde etmek i\u00e7in s\u0131ras\u0131yla \u00fcst limit ve alt limiti d\u00f6nd\u00fcren <a href=\"https:\/\/exceladvisor.org\/tr\/yukariya-dogru\/\">UBOUND<\/a> ve <a href=\"https:\/\/exceladvisor.org\/tr\/sinir-disi\/\">LBOUND<\/a> fonksiyonlar\u0131n\u0131 kullanabilirsiniz.<\/p><p> Bunun d\u0131\u015f\u0131nda bir elektronik tablo i\u015flevi olan COUNTA&#8217;y\u0131 da kullanabilirsiniz. Ve bu e\u011fitimde her iki y\u00f6ntemi de g\u00f6rece\u011fiz, b\u00f6ylece bunlardan herhangi birini size uygun olarak kullanabilirsiniz.<\/p><h2 class=\"wp-block-heading\"> Bir dizinin boyutunu alma ad\u0131mlar\u0131<\/h2><p> Burada aylar\u0131n listesini ve her aya ait sat\u0131\u015f miktar\u0131n\u0131 i\u00e7eren bir tablomuz var. <\/p><div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-57222\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png\" sizes=\"auto, \" srcset=\"\" alt=\"vba-dizi uzunlu\u011fu\" width=\"451\" height=\"527\"><\/figure><\/div><ol><li> Sat\u0131rlar\u0131 ve s\u00fctunlar\u0131 olan, do\u011fru \u015fekilde beyan edilmi\u015f bir tablonuz oldu\u011fundan emin olun. <br><img loading=\"lazy\" decoding=\"async\" title=\"2-dizi-bildirilen-do\u011fru-2\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-tableau-declare-correctement-2.png\" sizes=\"auto, \" srcset=\"\" alt=\"\" width=\"484\" height=\"291\"><\/li><li> Bundan sonra dizinin s\u0131n\u0131rlar\u0131n\u0131 saklamak i\u00e7in iki de\u011fi\u015fken daha (\u00e7\u00fcnk\u00fc iki boyutlu bir dizimiz var). <br><img loading=\"lazy\" decoding=\"async\" title=\"3-bir dizinin-3-s\u0131n\u0131rlar\u0131n\u0131-depolay\u0131n\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/3-stocker-les-bornes-dun-tableau-3.png\" sizes=\"auto, \" srcset=\"\" alt=\"\" width=\"596\" height=\"298\"><\/li><li> Daha sonra dizinin \u00fcst s\u0131n\u0131r\u0131n\u0131 elde etmek i\u00e7in Ubound i\u015flevini ve ard\u0131ndan alt s\u0131n\u0131r\u0131n\u0131 elde etmek i\u00e7in Lbound i\u015flevini kullanman\u0131z gereken bir form\u00fcl kullanman\u0131z gerekir.<\/li><li> \u0130ki boyutlu bir diziniz oldu\u011fundan, ikinizin de boyutlara ba\u011fl\u0131 olmas\u0131 ve bu de\u011feri de\u011fi\u015fkenlere ayarlaman\u0131z gerekir. <br><img loading=\"lazy\" decoding=\"async\" title=\"4-ubound-4 i\u015flevini kullan\u0131n\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-utiliser-la-fonction-ubound-4.png\" sizes=\"auto, \" srcset=\"\" alt=\"\" width=\"682\" height=\"349\"><\/li><li> Sonunda Ubound ve Lbound&#8217;dan elde etti\u011finiz uzunluklar\u0131 \u00fcst ve alt s\u0131n\u0131r olarak \u00e7arp\u0131n. <br><img loading=\"lazy\" decoding=\"async\" title=\"5-ubound-ve-lbound-benzeri-alt ve-\u00fcst-5\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/5-ubound-et-lbound-comme-inferieur-et-superieur-5.png\" sizes=\"auto, \" srcset=\"\" alt=\"\" width=\"729\" height=\"397\"><\/li><\/ol><p> \u0130\u015fte kodun tamam\u0131.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Dim yearSales(1 To 12, 1 To 2) As Integer Dim iCount1 As Integer, iCount2 As Integer iCount1 = UBound(yearSales, 1) - LBound(yearSales, 1) + 1 iCount2 = UBound(yearSales, 2) - LBound(yearSales, 2) + 1 MsgBox iCount1 * iCount2<\/code><\/pre><p class=\"qt-tip\"> <strong>Not:<\/strong> Yaz\u0131n\u0131n ba\u015f\u0131nda sizlerle payla\u015ft\u0131\u011f\u0131m tabloda toplam 13 sat\u0131r\u0131m\u0131z var m\u0131 diye merak ediyorsunuzdur.<\/p><p> Ancak ilk sat\u0131r ba\u015fl\u0131k oldu\u011fu i\u00e7in 13 sat\u0131rl\u0131k bir tablo kulland\u0131k. Ve burada bildirilen dizinin herhangi bir \u00f6\u011fe i\u00e7erip i\u00e7ermedi\u011fini kontrol etmek i\u00e7in <a href=\"https:\/\/exceladvisor.org\/tr\/eger-2\/\">IF STATEMENT<\/a> ve ISEMPTY <a href=\"https:\/\/exceladvisor.org\/tr\/bos\/\">i\u015flevini<\/a> kulland\u0131k.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Dim yearSales(1 To 12, 1 To 2) As Integer Dim iCount1 As Integer, iCount2 As Integer If IsEmpty(yearSales) = 0 Then MsgBox \"This array has zero elements.\" Else iCount1 = UBound(yearSales, 1) - LBound(yearSales, 1) + 1 iCount2 = UBound(yearSales, 2) - LBound(yearSales, 2) + 1 MsgBox \"This array has \" &amp; iCount1 * iCount2 &amp; \" element(s).\"<\/code><\/pre><h2 class=\"wp-block-heading\"> Dizi uzunlu\u011funu almak i\u00e7in COUNTA kullanma<\/h2><p> Bildi\u011finiz gibi dizi, tek boyutlu veya \u00e7ok boyutlu \u015fekilde yap\u0131land\u0131r\u0131lm\u0131\u015f \u00f6\u011feler k\u00fcmesidir ve bu \u00f6\u011feleri tek seferde saymak i\u00e7in COUNTA i\u015flevini ( <a href=\"https:\/\/exceladvisor.org\/tr\/elektronik-tablo-islevi\/\">elektronik tablo i\u015flevi<\/a> ) kullanabilirsiniz.<\/p><p> A\u015fa\u011f\u0131daki kodda, daha \u00f6nce bildirdi\u011finiz diziyi kulland\u0131n\u0131z ve ard\u0131ndan i\u015flevin d\u00f6nd\u00fcrd\u00fc\u011f\u00fc \u00f6\u011fe say\u0131s\u0131n\u0131 depolamak i\u00e7in bir de\u011fi\u015fken kulland\u0131n\u0131z. <\/p><div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-57227\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/6-utiliser-une-variable-pour-stocker-lelement-6.png\" sizes=\"auto, \" srcset=\"\" alt=\"\" width=\"644\" height=\"374\"><\/figure><\/div><p> G\u00f6rd\u00fc\u011f\u00fcn\u00fcz gibi, d\u00f6nd\u00fcrd\u00fc\u011f\u00fc sonu\u00e7 24&#8217;t\u00fcr, bu da dizideki toplam \u00f6\u011fe say\u0131s\u0131d\u0131r.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Dim yearSales(1 To 12, 1 To 2) As Integer iCount = WorksheetFunction.CountA(yearSales) MsgBox iCount<\/code><\/pre><p> Dikkat etmeniz gereken bir \u015fey var, bu y\u00f6ntem her durumda kullanmak i\u00e7in ideal olmayacakt\u0131r, bu nedenle daha \u00f6nce tart\u0131\u015ft\u0131\u011f\u0131m\u0131z y\u00f6ntemi kullanmak her zaman iyidir.<\/p><p> Bildirilen dizinin bo\u015f olup olmad\u0131\u011f\u0131n\u0131 ilk kontrol etmek i\u00e7in de kod yazabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Dim yearSales(1 To 12, 1 To 2) As Integer If IsEmpty(yearSales) = 0 Then MsgBox \"This array has zero elements.\" Else iCount = WorksheetFunction.CountA(yearSales) MsgBox \"This array has \" &amp; iCount &amp; \" element(s).\"<\/code><\/pre><div class=\"gb-container gb-container-4db6181c gb-container-mt\"> <a class=\"gb-button gb-button-c5897111 gb-button-text gb-button-mt-button\" href=\"https:\/\/exceladvisor.org\/tr\/vba\/\">VBA nedir<\/a><h2 class=\"gb-headline gb-headline-665e5f6b gb-headline-text gb-headline-mt-heading\"> <a href=\"https:\/\/exceladvisor.org\/tr\/resim-sergisi\/\">VBA tablolar\u0131<\/a> hakk\u0131nda daha fazla bilgi edinin <\/h2><div class=\"gb-grid-wrapper gb-grid-wrapper-a20baf7c gb-grid-wrapper-mt-grid\"><div class=\"gb-grid-column gb-grid-column-65ddf67e\"><div class=\"gb-container gb-container-65ddf67e\"><ul><li> <a href=\"https:\/\/exceladvisor.org\/tr\/yeni-bir-deger-dizisi-ekle\/\">VBA diziye yeni de\u011fer ekle<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/zincirli-masa\/\">Dizelerle VBA dizisi<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/tahtayi-sil\/\">VBA Diziyi Temizle<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/dinamik-tablo\/\">Dinamik tablo VBA&#8217;s\u0131<\/a><\/li><\/ul><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"ub_ctt_via":"","footnotes":""},"class_list":["post-2046","page","type-page","status-publish","hentry"],"featured_image_src":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>VBA kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?<\/title>\n<meta name=\"description\" content=\"Burada UBOUND ve LBOUND i\u015flevlerini kullanarak bir dizinin uzunlu\u011funu (tek ve \u00e7ok boyutlu) elde etmenin iki kolay yolunu g\u00f6receksiniz.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VBA kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?\" \/>\n<meta property=\"og:description\" content=\"Burada UBOUND ve LBOUND i\u015flevlerini kullanarak bir dizinin uzunlu\u011funu (tek ve \u00e7ok boyutlu) elde etmenin iki kolay yolunu g\u00f6receksiniz.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T06:06:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/\",\"name\":\"VBA kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png\",\"datePublished\":\"2023-10-22T20:20:14+00:00\",\"dateModified\":\"2023-12-10T06:06:15+00:00\",\"description\":\"Burada UBOUND ve LBOUND i\u015flevlerini kullanarak bir dizinin uzunlu\u011funu (tek ve \u00e7ok boyutlu) elde etmenin iki kolay yolunu g\u00f6receksiniz.\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/exceladvisor.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vba kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\",\"url\":\"https:\/\/exceladvisor.org\/tr\/\",\"name\":\"Excel Advisor\",\"description\":\"Veri hakimiyetine y\u00f6nelik nihai rehberiniz!\",\"publisher\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/exceladvisor.org\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#organization\",\"name\":\"Excel Advisor\",\"url\":\"https:\/\/exceladvisor.org\/tr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"width\":105,\"height\":36,\"caption\":\"Excel Advisor\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"VBA kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?","description":"Burada UBOUND ve LBOUND i\u015flevlerini kullanarak bir dizinin uzunlu\u011funu (tek ve \u00e7ok boyutlu) elde etmenin iki kolay yolunu g\u00f6receksiniz.","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:\/\/exceladvisor.org\/tr\/dizi-boyutu\/","og_locale":"tr_TR","og_type":"article","og_title":"VBA kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?","og_description":"Burada UBOUND ve LBOUND i\u015flevlerini kullanarak bir dizinin uzunlu\u011funu (tek ve \u00e7ok boyutlu) elde etmenin iki kolay yolunu g\u00f6receksiniz.","og_url":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T06:06:15+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Tahmini okuma s\u00fcresi":"3 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/","url":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/","name":"VBA kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png","datePublished":"2023-10-22T20:20:14+00:00","dateModified":"2023-12-10T06:06:15+00:00","description":"Burada UBOUND ve LBOUND i\u015flevlerini kullanarak bir dizinin uzunlu\u011funu (tek ve \u00e7ok boyutlu) elde etmenin iki kolay yolunu g\u00f6receksiniz.","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-longueur-de-tableau-vba-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/tr\/dizi-boyutu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/exceladvisor.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Vba kullanarak bir dizinin uzunlu\u011fu nas\u0131l elde edilir?"}]},{"@type":"WebSite","@id":"https:\/\/exceladvisor.org\/tr\/#website","url":"https:\/\/exceladvisor.org\/tr\/","name":"Excel Advisor","description":"Veri hakimiyetine y\u00f6nelik nihai rehberiniz!","publisher":{"@id":"https:\/\/exceladvisor.org\/tr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exceladvisor.org\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":"Organization","@id":"https:\/\/exceladvisor.org\/tr\/#organization","name":"Excel Advisor","url":"https:\/\/exceladvisor.org\/tr\/","logo":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/","url":"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","contentUrl":"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","width":105,"height":36,"caption":"Excel Advisor"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/"}}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2046","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/comments?post=2046"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2046\/revisions"}],"predecessor-version":[{"id":2859,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2046\/revisions\/2859"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/media?parent=2046"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}