{"id":1551,"date":"2023-11-17T07:57:05","date_gmt":"2023-11-17T07:57:05","guid":{"rendered":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/"},"modified":"2023-12-10T05:58:46","modified_gmt":"2023-12-10T05:58:46","slug":"belirli-karakterleri-say","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/","title":{"rendered":"Belirli karakterler nas\u0131l say\u0131l\u0131r?"},"content":{"rendered":"<div class=\"excel-icerikten-once\" id=\"excel-1748169929\"><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>Excel&#8217;de belirli bir karakteri saymak i\u00e7in SUBSTITUTE ve LEN i\u015flevlerinin bir birle\u015fimini kullanman\u0131z gerekir.<\/p><p> UZUNLUK toplam karakter say\u0131s\u0131n\u0131 sayar, ard\u0131ndan de\u011fi\u015ftirme i\u015flevi saymak istedi\u011finiz karakteri ana de\u011ferden kald\u0131r\u0131r.<\/p><p> Bundan sonra, toplam karakter say\u0131s\u0131n\u0131 tekrar sayabilir ve s\u00f6z konusu karakterin say\u0131s\u0131n\u0131 elde etmek i\u00e7in bunlar\u0131 orijinal say\u0131yla kar\u015f\u0131la\u015ft\u0131rabilirsiniz.<\/p><p> A\u015fa\u011f\u0131daki \u00f6rnekte A1 h\u00fccresinde uzun bir c\u00fcmleniz var ve \u015fimdi c\u00fcmleden &#8220;e&#8221; harfinin ka\u00e7 kez ge\u00e7ti\u011fini sayman\u0131z gerekiyor. Bu form\u00fcl\u00fc B1 h\u00fccresine yazaca\u011f\u0131z. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-67133\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png\" sizes=\"auto, \" srcset=\"\" alt=\"uzun c\u00fcmleli h\u00fccre\" width=\"479\" height=\"290\"><\/figure><\/div><p> Bu form\u00fcl\u00fc yazmak i\u00e7in a\u015fa\u011f\u0131daki ad\u0131mlar\u0131 kullanabilirsiniz:<\/p><ol type=\"1\"><li> \u00d6ncelikle B1 h\u00fccresine UZUNLUK fonksiyonunu girin ve A1 h\u00fccresine bak\u0131n.<\/li><li> Bundan sonra eksi i\u015faretini girin ve UZUNLUK fonksiyonuna tekrar girin.<\/li><li> Daha sonra UZUNLUK i\u015flevinde YEDEK i\u015flevine girmeniz gerekir.<\/li><li> \u015eimdi de\u011fi\u015ftirme fonksiyonuna girin ve tekrar A1 h\u00fccresine bak\u0131n.<\/li><li> Buradan ikinci arg\u00fcmanda de\u011fi\u015ftirmek istedi\u011finiz karakteri belirtmeniz gerekir.<\/li><li> Ve ard\u0131ndan SUBSTITUTE fonksiyonunun \u00fc\u00e7\u00fcnc\u00fc arg\u00fcman\u0131nda bo\u015f bir karakter.<\/li><li> Sonunda, kapan\u0131\u015f parantezleri aras\u0131nda Enter tu\u015funa bas\u0131n ve Enter tu\u015funa bas\u0131n. <\/li><\/ol><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-67134\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-len-et-formule-de-substitution.png\" sizes=\"auto, \" srcset=\"\" alt=\"uzama ve ikame form\u00fcl\u00fc\" width=\"665\" height=\"188\"><\/figure><\/div><p> Ve enter tu\u015funa bast\u0131\u011f\u0131n\u0131z anda sonu\u00e7 olarak sayma karakteri olan \u201ce\u201d yirmi d\u00f6rt de\u011ferini d\u00f6nd\u00fcr\u00fcyor. <\/p><pre class=\"wp-block-code\"> <code class=\"language-excel-formula\" lang=\"excel-formula\">=LEN(A1)-LEN(SUBSTITUTE(A1,\"e\",\"\"))<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-67135\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/Valeur-resultante-de-3-caracteres-speciaux.png\" sizes=\"auto, \" srcset=\"\" alt=\"\u00f6zel-karakter-sonu\u00e7-de\u011feri\" width=\"639\" height=\"196\"><\/figure><\/div><p> Bu form\u00fcl\u00fc do\u011frulamak i\u00e7in A1 h\u00fccresindeki t\u00fcm karakterler aras\u0131nda ge\u00e7i\u015f yapmak i\u00e7in a\u015fa\u011f\u0131daki kodu kulland\u0131m.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub LoopString() Dim Counter As Integer Dim MyString As String Dim i As Integer MyString = Range(\"A1\").Value For Counter = 1 To Len(MyString) If Mid(MyString, Counter, 1) = \"e\" Then i = i + 1 End If Next MsgBox i End Sub<\/code><\/pre><h2 class=\"wp-block-heading\"> Bu form\u00fcl nas\u0131l \u00e7al\u0131\u015f\u0131yor?<\/h2><p> \u015eimdi bu form\u00fcl\u00fcn nas\u0131l \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131 anlaman\u0131n zaman\u0131 geldi ve bunun i\u00e7in bu form\u00fcl\u00fc \u00fc\u00e7 par\u00e7aya ay\u0131rmam\u0131z gerekiyor. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-67136\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-comprendre-la-formule-len-et-substitut.png\" sizes=\"auto, \" srcset=\"\" alt=\"len form\u00fcl\u00fcn\u00fc ve yerine koymay\u0131 anlay\u0131n\" width=\"613\" height=\"144\"><\/figure><\/div><ol type=\"1\"><li> \u0130lk b\u00f6l\u00fcmde A1 h\u00fccresindeki toplam karakter say\u0131s\u0131n\u0131 sayan ve sonu\u00e7ta 199 de\u011ferini d\u00f6nd\u00fcren LEN fonksiyonumuz var.<\/li><li> \u0130kinci b\u00f6l\u00fcmde \u201ce\u201dyi s\u0131f\u0131r de\u011feriyle de\u011fi\u015ftirmek i\u00e7in ikame fonksiyonunu kulland\u0131k.<\/li><li> \u00dc\u00e7\u00fcnc\u00fc b\u00f6l\u00fcmde &#8220;e&#8221; karakterinin olmad\u0131\u011f\u0131 for de\u011ferinin karakterlerini saymak i\u00e7in yerine koyma fonksiyonunu uygulad\u0131k. <\/li><\/ol><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-67137\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/5-comprendre-la-combinaison-len-et-substitut.png\" sizes=\"auto, \" srcset=\"\" alt=\"anla-len-ve-yerine-kombinasyonu\" width=\"611\" height=\"184\"><\/figure><\/div><div class=\"gb-container gb-container-52dfcee1 gb-container-sample-file\"><h2 class=\"gb-headline gb-headline-e289c143 gb-headline-text gb-headline-4f7959c2\"> Excel dosyas\u0131n\u0131 al\u0131n<\/h2> <a href=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/11\/compter-les-caracteres-2.xlsx\">\u0130ndirmek<\/a><\/div><div class=\"gb-container gb-container-0df56012 gb-container-mt\"> <a class=\"gb-button gb-button-f9f432f4 gb-button-text gb-button-mt-button\" href=\"https:\/\/exceladvisor.org\/tr\/formuller\/\">Excel form\u00fcllerinin listesi<\/a><h2 class=\"gb-headline gb-headline-233444e8 gb-headline-text gb-headline-mt-heading\"> \u0130lgili form\u00fcller <\/h2><div class=\"gb-grid-wrapper gb-grid-wrapper-a16fa65c gb-grid-wrapper-mt-grid\"><div class=\"gb-grid-column gb-grid-column-50d07e0d\"><div class=\"gb-container gb-container-50d07e0d\"><ul><li> <a href=\"https:\/\/exceladvisor.org\/tr\/metin-iceren-hucreleri-say\/\">Excel&#8217;de metin i\u00e7eren h\u00fccreleri sayma<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/toplam-hucre-sayisini-say\/\">Excel&#8217;de bir aral\u0131ktaki toplam h\u00fccre say\u0131s\u0131n\u0131 say\u0131n<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/benzersiz-degerleri-sayma-1\/\">Excel&#8217;de benzersiz de\u011ferleri say\u0131n<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/kelimeleri-say\/\">Excel&#8217;de kelimeleri sayma<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/filtrelenen-satirlari-say\/\">Excel&#8217;de filtrelenen sat\u0131rlar\u0131 say\u0131n<\/a> <\/li><\/ul><\/div><\/div><div class=\"gb-grid-column gb-grid-column-5b4a0cf9\"><div class=\"gb-container gb-container-5b4a0cf9\"><\/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-1551","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>\u25b7 Excel&#039;de belirli karakterler nas\u0131l say\u0131l\u0131r?<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, kullan\u0131m\u0131 kolay bir form\u00fcl kullanarak Excel&#039;deki belirli karakterleri sayman\u0131n farkl\u0131 yollar\u0131n\u0131 \u00f6\u011freneceksiniz.\" \/>\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\/belirli-karakterleri-say\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 Excel&#039;de belirli karakterler nas\u0131l say\u0131l\u0131r?\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, kullan\u0131m\u0131 kolay bir form\u00fcl kullanarak Excel&#039;deki belirli karakterleri sayman\u0131n farkl\u0131 yollar\u0131n\u0131 \u00f6\u011freneceksiniz.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T05:58:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.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=\"2 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/\",\"name\":\"\u25b7 Excel&#39;de belirli karakterler nas\u0131l say\u0131l\u0131r?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png\",\"datePublished\":\"2023-11-17T07:57:05+00:00\",\"dateModified\":\"2023-12-10T05:58:46+00:00\",\"description\":\"Bu e\u011fitimde, kullan\u0131m\u0131 kolay bir form\u00fcl kullanarak Excel&#39;deki belirli karakterleri sayman\u0131n farkl\u0131 yollar\u0131n\u0131 \u00f6\u011freneceksiniz.\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/exceladvisor.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Belirli karakterler nas\u0131l say\u0131l\u0131r?\"}]},{\"@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":"\u25b7 Excel&#39;de belirli karakterler nas\u0131l say\u0131l\u0131r?","description":"Bu e\u011fitimde, kullan\u0131m\u0131 kolay bir form\u00fcl kullanarak Excel&#39;deki belirli karakterleri sayman\u0131n farkl\u0131 yollar\u0131n\u0131 \u00f6\u011freneceksiniz.","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\/belirli-karakterleri-say\/","og_locale":"tr_TR","og_type":"article","og_title":"\u25b7 Excel&#39;de belirli karakterler nas\u0131l say\u0131l\u0131r?","og_description":"Bu e\u011fitimde, kullan\u0131m\u0131 kolay bir form\u00fcl kullanarak Excel&#39;deki belirli karakterleri sayman\u0131n farkl\u0131 yollar\u0131n\u0131 \u00f6\u011freneceksiniz.","og_url":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T05:58:46+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Tahmini okuma s\u00fcresi":"2 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/","url":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/","name":"\u25b7 Excel&#39;de belirli karakterler nas\u0131l say\u0131l\u0131r?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png","datePublished":"2023-11-17T07:57:05+00:00","dateModified":"2023-12-10T05:58:46+00:00","description":"Bu e\u011fitimde, kullan\u0131m\u0131 kolay bir form\u00fcl kullanarak Excel&#39;deki belirli karakterleri sayman\u0131n farkl\u0131 yollar\u0131n\u0131 \u00f6\u011freneceksiniz.","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-cellule-avec-longue-phrase.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/tr\/belirli-karakterleri-say\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/exceladvisor.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Belirli karakterler nas\u0131l say\u0131l\u0131r?"}]},{"@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\/1551","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=1551"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/1551\/revisions"}],"predecessor-version":[{"id":2268,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/1551\/revisions\/2268"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/media?parent=1551"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}