{"id":2299,"date":"2023-07-22T21:22:03","date_gmt":"2023-07-22T21:22:03","guid":{"rendered":"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/"},"modified":"2023-07-22T21:22:03","modified_gmt":"2023-07-22T21:22:03","slug":"google-lascia-sotto-catena","status":"publish","type":"post","link":"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/","title":{"rendered":"Come estrarre una sottostringa in fogli google (con esempi)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Puoi utilizzare le seguenti formule per estrarre determinate sottostringhe dal testo in Fogli Google:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Metodo 1: restituisce la sottostringa dall&#8217;inizio della stringa<\/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>Metodo 2: restituisce la sottostringa dal centro della stringa<\/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>Metodo 3: restituisce la sottostringa dalla fine della stringa<\/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>Metodo 4: restituzione della sottostringa prima del testo<\/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>Metodo 5: restituisce la sottostringa dopo un determinato testo<\/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;\">Gli esempi seguenti mostrano come utilizzare nella pratica ciascuno di questi metodi.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Metodo 1: restituisce la sottostringa dall&#8217;inizio della stringa<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">La schermata seguente mostra come utilizzare la funzione <strong>LEFT()<\/strong> per restituire i primi tre caratteri della cella A2:<\/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=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Metodo 2: restituisce la sottostringa dal centro della stringa<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">La schermata seguente mostra come utilizzare la funzione <strong>MID()<\/strong> per restituire i cinque caratteri al centro della cella A2, a partire dalla posizione 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=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Metodo 3: restituisce la sottostringa dalla fine della stringa<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">La schermata seguente mostra come utilizzare la funzione <strong>DESTRA()<\/strong> per restituire gli ultimi tre caratteri della cella A2:<\/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=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Metodo 4:<\/strong><\/span> <span style=\"color: #000000;\"><strong>restituzione della sottostringa prima del testo<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">La schermata seguente mostra come utilizzare le funzioni <strong>LEFT()<\/strong> e <strong>SEARCH()<\/strong> per restituire tutto il testo che precede la stringa &#8220;l\u00e0&#8221; nella cella 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=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Metodo 5:<\/strong><\/span> <span style=\"color: #000000;\"><strong>restituisce la sottostringa dopo un determinato testo<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Lo screenshot seguente mostra come utilizzare le funzioni <strong>RIGHT()<\/strong> e <strong>SEARCH()<\/strong> per restituire tutto il testo che segue la stringa &#8220;there&#8221; nella cella A2:<\/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=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Risorse addizionali<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">I seguenti tutorial spiegano come eseguire altre operazioni comuni in Fogli Google:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/it\/cifre-significative-fogli-google\/\" target=\"_blank\" rel=\"noopener\">Come arrotondare alle cifre significative in Fogli Google<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/campione-di-fogli-casuali-di-google\/\" target=\"_blank\" rel=\"noopener\">Come selezionare un campione casuale in Fogli Google<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/i-fogli-di-google-combinano-le-colonne\/\" target=\"_blank\" rel=\"noopener\">Come combinare colonne in Fogli Google<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Puoi utilizzare le seguenti formule per estrarre determinate sottostringhe dal testo in Fogli Google: Metodo 1: restituisce la sottostringa dall&#8217;inizio della stringa #return first 4 characters of string in cell A1 = LEFT ( A1,4 ) Metodo 2: restituisce la sottostringa dal centro della stringa #return 4 characters of string in cell A1 starting at [&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>Come estrarre una sottostringa in Fogli Google (con esempi) \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Questo tutorial spiega come estrarre una sottostringa da una stringa in Fogli Google, con diversi esempi.\" \/>\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\/it\/google-lascia-sotto-catena\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Come estrarre una sottostringa in Fogli Google (con esempi) \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Questo tutorial spiega come estrarre una sottostringa da una stringa in Fogli Google, con diversi esempi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/\" \/>\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=\"Benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/\",\"url\":\"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/\",\"name\":\"Come estrarre una sottostringa in Fogli Google (con esempi) \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/it\/#website\"},\"datePublished\":\"2023-07-22T21:22:03+00:00\",\"dateModified\":\"2023-07-22T21:22:03+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\"},\"description\":\"Questo tutorial spiega come estrarre una sottostringa da una stringa in Fogli Google, con diversi esempi.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Casa\",\"item\":\"https:\/\/statorials.org\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Come estrarre una sottostringa in fogli google (con esempi)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/it\/#website\",\"url\":\"https:\/\/statorials.org\/it\/\",\"name\":\"Statorials\",\"description\":\"La tua guida all&#039;alfabetizzazione statistica!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/it\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\",\"name\":\"Benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Benjamin anderson\"},\"description\":\"Ciao, sono Benjamin, un professore di statistica in pensione diventato insegnante dedicato di Statorials. Con una vasta esperienza e competenza nel campo della statistica, sono ansioso di condividere le mie conoscenze per potenziare gli studenti attraverso Statorials. Scopri di pi\u00f9\",\"sameAs\":[\"https:\/\/statorials.org\/it\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Come estrarre una sottostringa in Fogli Google (con esempi) \u2013 Statorials","description":"Questo tutorial spiega come estrarre una sottostringa da una stringa in Fogli Google, con diversi esempi.","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\/it\/google-lascia-sotto-catena\/","og_locale":"it_IT","og_type":"article","og_title":"Come estrarre una sottostringa in Fogli Google (con esempi) \u2013 Statorials","og_description":"Questo tutorial spiega come estrarre una sottostringa da una stringa in Fogli Google, con diversi esempi.","og_url":"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/","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":"Benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Benjamin anderson","Est. reading time":"2 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/","url":"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/","name":"Come estrarre una sottostringa in Fogli Google (con esempi) \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/it\/#website"},"datePublished":"2023-07-22T21:22:03+00:00","dateModified":"2023-07-22T21:22:03+00:00","author":{"@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae"},"description":"Questo tutorial spiega come estrarre una sottostringa da una stringa in Fogli Google, con diversi esempi.","breadcrumb":{"@id":"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/it\/google-lascia-sotto-catena\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Casa","item":"https:\/\/statorials.org\/it\/"},{"@type":"ListItem","position":2,"name":"Come estrarre una sottostringa in fogli google (con esempi)"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/it\/#website","url":"https:\/\/statorials.org\/it\/","name":"Statorials","description":"La tua guida all&#039;alfabetizzazione statistica!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/it\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae","name":"Benjamin anderson","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Benjamin anderson"},"description":"Ciao, sono Benjamin, un professore di statistica in pensione diventato insegnante dedicato di Statorials. Con una vasta esperienza e competenza nel campo della statistica, sono ansioso di condividere le mie conoscenze per potenziare gli studenti attraverso Statorials. Scopri di pi\u00f9","sameAs":["https:\/\/statorials.org\/it"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/2299"}],"collection":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/comments?post=2299"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/2299\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/media?parent=2299"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/categories?post=2299"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/tags?post=2299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}