{"id":2305,"date":"2023-07-22T20:32:16","date_gmt":"2023-07-22T20:32:16","guid":{"rendered":"https:\/\/statorials.org\/de\/if-oder-google-sheets\/"},"modified":"2023-07-22T20:32:16","modified_gmt":"2023-07-22T20:32:16","slug":"if-oder-google-sheets","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/if-oder-google-sheets\/","title":{"rendered":"So kombinieren sie if- und or-funktionen in google sheets"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Sie k\u00f6nnen die folgende grundlegende Syntax verwenden, um die <strong>IF-<\/strong> und <strong>OR-<\/strong> Funktionen zusammen in Google Sheets zu verwenden, um zu bestimmen, ob eine Zelle eines von mehreren Kriterien erf\u00fcllt:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IF<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">OR<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A2<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">=\" <span style=\"color: #008000;\">String<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span dir=\"auto\" style=\"color: #800080;\">B2<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">&gt;<\/span> <span class=\"number\" dir=\"auto\" style=\"color: #3366ff;\">10<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">value1<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">value2<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Wenn der Wert in Zelle A2 gleich \u201eString\u201c ist <em>oder<\/em> wenn der Wert in Zelle B2 gr\u00f6\u00dfer als 10 ist, dann geben wir Wert1 zur\u00fcck, andernfalls geben wir Wert2 zur\u00fcck.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Beachten Sie, dass wir in der <strong>OR-<\/strong> Funktion so viele logische Vergleiche verwenden k\u00f6nnen, wie wir m\u00f6chten.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Die folgenden Beispiele zeigen, wie Sie diese Syntax in der Praxis anwenden k\u00f6nnen.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 1: Kombinieren von IF- und OR-Funktionen mit String-Vergleichen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Nehmen wir an, wir haben eine Spalte mit den Namen der NBA-Teams und m\u00f6chten feststellen, ob jedes Team in Texas ans\u00e4ssig ist:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20967 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/si1-1.png\" alt=\"\" width=\"474\" height=\"468\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Beachten Sie, dass die einzigen in Texas ans\u00e4ssigen Teams die Mavs, Rockets und Spurs sind.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen<\/span> <span style=\"color: #000000;\">die folgende Formel mit den <strong>IF-<\/strong> und <strong>OR-<\/strong> Funktionen verwenden, um zu bestimmen, ob jedes Team in Texas ans\u00e4ssig ist:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IF<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">OR<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A2<\/span> <span class=\"  default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">Mavs<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A2<\/span> <span class=\"  default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">Rockets<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A2<\/span> <span class=\"  default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">Spurs<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">Yes<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">No<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Der folgende Screenshot zeigt, wie diese Syntax in der Praxis verwendet wird:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20968 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/si2-1.png\" alt=\"\" width=\"571\" height=\"450\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Wenn ein bestimmtes Team aus Texas kommt, geben wir \u201eJa\u201c zur\u00fcck, andernfalls geben wir \u201eNein\u201c zur\u00fcck.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 2: Kombinieren von WENN- und ODER-Funktionen mit numerischen Vergleichen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Nehmen wir an, wir haben Spalten, die die Anzahl der Punkte und Assists f\u00fcr verschiedene Basketballspieler enthalten, und wir m\u00f6chten jeden Spieler als \u201egut\u201c oder \u201eschlecht\u201c klassifizieren.<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20970 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/si3-1.png\" alt=\"\" width=\"489\" height=\"465\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Nehmen wir an, wenn ein Spieler mehr als 20 Punkte <em>oder<\/em> mehr als 10 Assists hat, klassifizieren wir ihn als \u201eGut\u201c, andernfalls klassifizieren wir ihn als \u201eSchlecht\u201c.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen die folgende Formel mit den <strong>IF-<\/strong> und <strong>OR<\/strong> -Funktionen verwenden, um zu bestimmen, ob jeder Spieler als \u201egut\u201c oder \u201eschlecht\u201c klassifiziert werden sollte:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IF<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">OR<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A2<\/span> <span class=\"  default-formula-text-color\" dir=\"auto\">&gt;<\/span> <span class=\"number\" dir=\"auto\" style=\"color: #3366ff;\">20<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span dir=\"auto\" style=\"color: #800080;\">B2<\/span> <span class=\"  default-formula-text-color\" dir=\"auto\">&gt;<\/span> <span class=\"number\" dir=\"auto\" style=\"color: #3366ff;\">10<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\u201c <span style=\"color: #008000;\">Good<\/span> \u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\u201c <span style=\"color: #008000;\">Bad<\/span> \u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Der folgende Screenshot zeigt, wie diese Syntax in der Praxis verwendet wird:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-20971 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/si4.png\" alt=\"IF- und OR-Funktion in Google Sheets\" width=\"487\" height=\"458\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Wenn ein bestimmter Spieler mehr als 20 Punkte <em>oder<\/em> mehr als 10 Assists hat, stufen wir ihn als \u201egut\u201c ein.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ansonsten stufen wir sie als \u201eschlecht\u201c ein.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">In den folgenden Tutorials wird erl\u00e4utert, wie Sie andere h\u00e4ufige Aufgaben in Google Sheets ausf\u00fchren:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/de\/google-sheets-zahlt-mehrere-bereiche\/\" target=\"_blank\" rel=\"noopener\">So verwenden Sie COUNTIF mit mehreren Bereichen in Google Sheets<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/google-sumif-blattert-in-mehreren-spalten\/\" target=\"_blank\" rel=\"noopener\">So verwenden Sie SUMIF mit mehreren Spalten in Google Sheets<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/summe-uber-mehrere-google-sheets\/\" target=\"_blank\" rel=\"noopener\">So f\u00fcgen Sie in Google Sheets mehrere Bl\u00e4tter hinzu<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sie k\u00f6nnen die folgende grundlegende Syntax verwenden, um die IF- und OR- Funktionen zusammen in Google Sheets zu verwenden, um zu bestimmen, ob eine Zelle eines von mehreren Kriterien erf\u00fcllt: = IF ( OR ( A2 =&#8220; String &#8220; , B2 &gt; 10 ) , &#8220; value1 &#8220; , &#8220; value2 &#8220; ) Wenn der [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>So kombinieren Sie IF- und OR-Funktionen in Google Sheets \u2013 Statistik<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erkl\u00e4rt, wie Sie die IF- und OR-Funktionen gemeinsam in Google Sheets verwenden.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/de\/if-oder-google-sheets\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"So kombinieren Sie IF- und OR-Funktionen in Google Sheets \u2013 Statistik\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erkl\u00e4rt, wie Sie die IF- und OR-Funktionen gemeinsam in Google Sheets verwenden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/if-oder-google-sheets\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T20:32:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/si1-1.png\" \/>\n<meta name=\"author\" content=\"Dr. Benjamin Anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr. Benjamin Anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/if-oder-google-sheets\/\",\"url\":\"https:\/\/statorials.org\/de\/if-oder-google-sheets\/\",\"name\":\"So kombinieren Sie IF- und OR-Funktionen in Google Sheets \u2013 Statistik\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-22T20:32:16+00:00\",\"dateModified\":\"2023-07-22T20:32:16+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand mehrerer Beispiele erkl\u00e4rt, wie Sie die IF- und OR-Funktionen gemeinsam in Google Sheets verwenden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/if-oder-google-sheets\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/if-oder-google-sheets\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/if-oder-google-sheets\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"So kombinieren sie if- und or-funktionen in google sheets\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/de\/#website\",\"url\":\"https:\/\/statorials.org\/de\/\",\"name\":\"Statorials\",\"description\":\"Ihr Leitfaden f\u00fcr statistische Kompetenz !\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/de\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-DE\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\",\"name\":\"Dr. Benjamin Anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr. Benjamin Anderson\"},\"description\":\"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen\",\"sameAs\":[\"https:\/\/statorials.org\/de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"So kombinieren Sie IF- und OR-Funktionen in Google Sheets \u2013 Statistik","description":"In diesem Tutorial wird anhand mehrerer Beispiele erkl\u00e4rt, wie Sie die IF- und OR-Funktionen gemeinsam in Google Sheets verwenden.","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:\/\/statorials.org\/de\/if-oder-google-sheets\/","og_locale":"de_DE","og_type":"article","og_title":"So kombinieren Sie IF- und OR-Funktionen in Google Sheets \u2013 Statistik","og_description":"In diesem Tutorial wird anhand mehrerer Beispiele erkl\u00e4rt, wie Sie die IF- und OR-Funktionen gemeinsam in Google Sheets verwenden.","og_url":"https:\/\/statorials.org\/de\/if-oder-google-sheets\/","og_site_name":"Statorials","article_published_time":"2023-07-22T20:32:16+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/si1-1.png"}],"author":"Dr. Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr. Benjamin Anderson","Gesch\u00e4tzte Lesezeit":"2 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/de\/if-oder-google-sheets\/","url":"https:\/\/statorials.org\/de\/if-oder-google-sheets\/","name":"So kombinieren Sie IF- und OR-Funktionen in Google Sheets \u2013 Statistik","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-22T20:32:16+00:00","dateModified":"2023-07-22T20:32:16+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand mehrerer Beispiele erkl\u00e4rt, wie Sie die IF- und OR-Funktionen gemeinsam in Google Sheets verwenden.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/if-oder-google-sheets\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/if-oder-google-sheets\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/if-oder-google-sheets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"So kombinieren sie if- und or-funktionen in google sheets"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/de\/#website","url":"https:\/\/statorials.org\/de\/","name":"Statorials","description":"Ihr Leitfaden f\u00fcr statistische Kompetenz !","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/de\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-DE"},{"@type":"Person","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0","name":"Dr. Benjamin Anderson","image":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","caption":"Dr. Benjamin Anderson"},"description":"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen","sameAs":["https:\/\/statorials.org\/de"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2305"}],"collection":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/comments?post=2305"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2305\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=2305"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=2305"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=2305"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}