{"id":2299,"date":"2023-07-22T21:22:03","date_gmt":"2023-07-22T21:22:03","guid":{"rendered":"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/"},"modified":"2023-07-22T21:22:03","modified_gmt":"2023-07-22T21:22:03","slug":"google-vertrekt-onder-keten","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/","title":{"rendered":"Hoe u een subtekenreeks in google spreadsheets kunt extraheren (met voorbeelden)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">U kunt de volgende formules gebruiken om bepaalde subtekenreeksen uit tekst in Google Spreadsheets te extraheren:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 1: Retourneer subtekenreeks vanaf het begin van de tekenreeks<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span style=\"color: #008080;\">#return first 4 characters of string in cell A1<\/span>\n= <span style=\"color: #3366ff;\">LEFT<\/span> ( <span style=\"color: #ff6600;\">A1,4<\/span> )\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 2: Retourneer subtekenreeks vanuit het midden van de tekenreeks<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span style=\"color: #008080;\">#return 4 characters of string in cell A1 starting at position 2<\/span>\n= <span style=\"color: #3366ff;\">MID<\/span> ( <span style=\"color: #ff6600;\">A1,2,4<\/span> )<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 3: Retourneer subtekenreeks vanaf het einde van de tekenreeks<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span style=\"color: #008080;\">#return last 4 characters of string in cell A1<\/span>\n= <span style=\"color: #3366ff;\">RIGHT<\/span> ( <span style=\"color: #ff6600;\">A1,4<\/span> )<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 4: Subtekenreeks retourneren v\u00f3\u00f3r tekst<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span style=\"color: #008080;\">#return all text before the string \"there\" in cell A1<\/span>\n=LEFT( <span style=\"color: #ff6600;\">A1<\/span> , SEARCH(\" <span style=\"color: #008000;\">there<\/span> \", <span style=\"color: #ff6600;\">A1<\/span> )-1)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 5: Subtekenreeks retourneren na bepaalde tekst<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span style=\"color: #008080;\">#return all text after the string \"there\" in cell A1<\/span>\n<span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">RIGHT<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A1<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">SEARCH<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" string \" dir=\"auto\">\u201c <span style=\"color: #008000;\">there<\/span> \u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A1<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)-1<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">De volgende voorbeelden laten zien hoe u elk van deze methoden in de praktijk kunt gebruiken.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Methode 1: Retourneer subtekenreeks vanaf het begin van de tekenreeks<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">De volgende schermafbeelding laat zien hoe u de functie <strong>LINKS()<\/strong> gebruikt om de eerste drie tekens van cel A2 te retourneren:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20905 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous1.png\" alt=\"\" width=\"497\" height=\"390\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Methode 2: Retourneer subtekenreeks vanuit het midden van de tekenreeks<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">De volgende schermafbeelding laat zien hoe u de functie <strong>MID()<\/strong> gebruikt om de vijf tekens in het midden van cel A2 te retourneren, beginnend op positie 4:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20906 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous2-1.png\" alt=\"\" width=\"490\" height=\"410\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Methode 3: Retourneer subtekenreeks vanaf het einde van de tekenreeks<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">De volgende schermafbeelding laat zien hoe u de functie <strong>RIGHT()<\/strong> gebruikt om de laatste drie tekens van cel A2 te retourneren:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20907 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous3.png\" alt=\"\" width=\"493\" height=\"427\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Methode 4:<\/strong><\/span> <span style=\"color: #000000;\"><strong>Subtekenreeks retourneren v\u00f3\u00f3r tekst<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">De volgende schermafbeelding laat zien hoe u de functies <strong>LEFT()<\/strong> en <strong>SEARCH()<\/strong> kunt gebruiken om alle tekst te retourneren die voorafgaat aan de tekenreeks &#8222;daar&#8220; in cel A2:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20908 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous4.png\" alt=\"\" width=\"507\" height=\"437\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Methode 5:<\/strong><\/span> <span style=\"color: #000000;\"><strong>Subtekenreeks retourneren na bepaalde tekst<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">De volgende schermafbeelding laat zien hoe u de functies <strong>RIGHT()<\/strong> en <strong>SEARCH()<\/strong> kunt gebruiken om alle tekst te retourneren die na de tekenreeks &#8222;there&#8220; in cel A2 komt:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20909 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sub5.png\" alt=\"\" width=\"513\" height=\"449\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Aanvullende bronnen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">In de volgende tutorials wordt uitgelegd hoe u andere veelvoorkomende dingen in Google Spreadsheets kunt doen:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/nl\/significante-cijfers-google-spreadsheets\/\" target=\"_blank\" rel=\"noopener\">Hoe u kunt afronden naar significante cijfers in Google Spreadsheets<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/voorbeeld-van-willekeurige-google-bladen\/\" target=\"_blank\" rel=\"noopener\">Hoe u een willekeurig monster selecteert in Google Spreadsheets<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/google-spreadsheets-combineren-kolommen\/\" target=\"_blank\" rel=\"noopener\">Kolommen combineren in Google Spreadsheets<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>U kunt de volgende formules gebruiken om bepaalde subtekenreeksen uit tekst in Google Spreadsheets te extraheren: Methode 1: Retourneer subtekenreeks vanaf het begin van de tekenreeks #return first 4 characters of string in cell A1 = LEFT ( A1,4 ) Methode 2: Retourneer subtekenreeks vanuit het midden van de tekenreeks #return 4 characters of string [&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":[],"class_list":["post-2299","post","type-post","status-publish","format-standard","hentry","category-gids"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Een subtekenreeks extraheren in Google Spreadsheets (met voorbeelden) - Statorials<\/title>\n<meta name=\"description\" content=\"In deze tutorial wordt uitgelegd hoe u een subtekenreeks uit een tekenreeks in Google Spreadsheets kunt extraheren, met verschillende voorbeelden.\" \/>\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\/nl\/google-vertrekt-onder-keten\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Een subtekenreeks extraheren in Google Spreadsheets (met voorbeelden) - Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial wordt uitgelegd hoe u een subtekenreeks uit een tekenreeks in Google Spreadsheets kunt extraheren, met verschillende voorbeelden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T21:22:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous1.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\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/\",\"url\":\"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/\",\"name\":\"Een subtekenreeks extraheren in Google Spreadsheets (met voorbeelden) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-22T21:22:03+00:00\",\"dateModified\":\"2023-07-22T21:22:03+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze tutorial wordt uitgelegd hoe u een subtekenreeks uit een tekenreeks in Google Spreadsheets kunt extraheren, met verschillende voorbeelden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe u een subtekenreeks in google spreadsheets kunt extraheren (met voorbeelden)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/nl\/#website\",\"url\":\"https:\/\/statorials.org\/nl\/\",\"name\":\"Statorials\",\"description\":\"Uw gids voor statistische competentie\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/nl\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder\",\"sameAs\":[\"http:\/\/statorials.org\/nl\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Een subtekenreeks extraheren in Google Spreadsheets (met voorbeelden) - Statorials","description":"In deze tutorial wordt uitgelegd hoe u een subtekenreeks uit een tekenreeks in Google Spreadsheets kunt extraheren, met verschillende voorbeelden.","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\/nl\/google-vertrekt-onder-keten\/","og_locale":"de_DE","og_type":"article","og_title":"Een subtekenreeks extraheren in Google Spreadsheets (met voorbeelden) - Statorials","og_description":"In deze tutorial wordt uitgelegd hoe u een subtekenreeks uit een tekenreeks in Google Spreadsheets kunt extraheren, met verschillende voorbeelden.","og_url":"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/","og_site_name":"Statorials","article_published_time":"2023-07-22T21:22:03+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous1.png"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson","Gesch\u00e4tzte Lesezeit":"2\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/","url":"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/","name":"Een subtekenreeks extraheren in Google Spreadsheets (met voorbeelden) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-22T21:22:03+00:00","dateModified":"2023-07-22T21:22:03+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze tutorial wordt uitgelegd hoe u een subtekenreeks uit een tekenreeks in Google Spreadsheets kunt extraheren, met verschillende voorbeelden.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/google-vertrekt-onder-keten\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe u een subtekenreeks in google spreadsheets kunt extraheren (met voorbeelden)"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/nl\/#website","url":"https:\/\/statorials.org\/nl\/","name":"Statorials","description":"Uw gids voor statistische competentie","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/nl\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/","url":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder","sameAs":["http:\/\/statorials.org\/nl"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/2299","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/comments?post=2299"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/2299\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=2299"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=2299"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=2299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}