{"id":5106,"date":"2023-07-03T14:48:38","date_gmt":"2023-07-03T14:48:38","guid":{"rendered":"https:\/\/statorials.org\/it\/sottostringa-excel\/"},"modified":"2023-07-03T14:48:38","modified_gmt":"2023-07-03T14:48:38","slug":"sottostringa-excel","status":"publish","type":"post","link":"https:\/\/statorials.org\/it\/sottostringa-excel\/","title":{"rendered":"Come estrarre una sottostringa in excel (con esempi)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u00c8 possibile utilizzare le seguenti formule per estrarre determinate sottostringhe dal testo in Excel:<\/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 3 characters of string in cell A2<\/span>\n<span style=\"color: #000000;\">=LEFT( <span style=\"color: #3366ff;\">A2,3<\/span> )\n<\/span><\/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 8 characters of string in cell A2 starting at position 2<\/span>\n=MID( <span style=\"color: #3366ff;\">A2,2,8<\/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 3 characters of string in cell A2<\/span>\n=RIGHT( <span style=\"color: #3366ff;\">A2<\/span> , <span style=\"color: #000000;\">3)<\/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 A2<\/span>\n=TEXTBEFORE( <span style=\"color: #3366ff;\">A2<\/span> , \"there\")<\/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 A2<\/span>\n=TEXTAFTER( <span style=\"color: #3366ff;\">A2<\/span> , \"there\")\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Gli esempi seguenti mostrano come utilizzare nella pratica ciascuno di questi metodi.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Metodo 1: restituisce la sottostringa dall&#8217;inizio della stringa<\/strong><\/span><\/h2>\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 <strong>A2<\/strong> :<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-39764\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/es1.png\" alt=\"Excel ottiene la sottostringa dall'inizio della stringa\" width=\"429\" height=\"324\" srcset=\"\" sizes=\"\"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Metodo 2: restituisce la sottostringa dal centro della stringa<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Lo screenshot seguente mostra come utilizzare la funzione <strong>MID()<\/strong> per restituire gli otto caratteri al centro della cella <strong>A2<\/strong> , a partire dalla posizione 2:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-39765\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/es2.png\" alt=\"Excel ottiene la sottostringa centrale della stringa\" width=\"442\" height=\"353\" srcset=\"\" sizes=\"\"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Metodo 3: restituisce la sottostringa dalla fine della stringa<\/strong><\/span><\/h2>\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 <strong>A2<\/strong> :<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-39766\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/es3.png\" alt=\"Excel ottiene la sottostringa dalla fine della stringa\" width=\"435\" height=\"348\" srcset=\"\" sizes=\"\"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Metodo 4:<\/strong><\/span> <span style=\"color: #000000;\"><strong>restituzione della sottostringa prima del testo<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Lo screenshot seguente mostra come utilizzare la funzione <strong>TEXTBEFORE()<\/strong> per restituire tutto il testo che precede la stringa &#8220;there&#8221; nella cella <strong>A2<\/strong> :<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-39767\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/es4.png\" alt=\"Excel ottiene la sottostringa prima del testo specifico\" width=\"444\" height=\"324\" srcset=\"\" sizes=\"\"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Metodo 5:<\/strong><\/span> <span style=\"color: #000000;\"><strong>restituisce la sottostringa dopo un determinato testo<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">La seguente schermata mostra come utilizzare la funzione <strong>TEXTAFTER()<\/strong> per restituire tutto il testo che segue la stringa &#8220;l\u00e0&#8221; nella cella <strong>A2<\/strong> :<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-39768\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/es5.png\" alt=\"Excel ottiene la sottostringa dopo il testo specifico\" width=\"434\" height=\"343\" srcset=\"\" sizes=\"\"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Risorse addizionali<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">I seguenti tutorial spiegano come eseguire altre operazioni comuni in Excel:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/it\/excel-elimina-il-primo-e-lultimo-carattere\/\" target=\"_blank\" rel=\"noopener\">Excel: come rimuovere il primo e l&#8217;ultimo carattere da una stringa<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/excel-trova-la-prima-lettera-nella-stringa\/\" target=\"_blank\" rel=\"noopener\">Excel: come trovare la prima lettera di una stringa<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/excel-trova-il-primo-numero-nella-stringa\/\" target=\"_blank\" rel=\"noopener\">Excel: come trovare il primo numero in una stringa di testo<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00c8 possibile utilizzare le seguenti formule per estrarre determinate sottostringhe dal testo in Excel: Metodo 1: restituisce la sottostringa dall&#8217;inizio della stringa #return first 3 characters of string in cell A2 =LEFT( A2,3 ) Metodo 2: restituisce la sottostringa dal centro della stringa #return 8 characters of string in cell A2 starting at position 2 [&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 Excel (con esempi) - Statorials<\/title>\n<meta name=\"description\" content=\"Questo tutorial spiega come estrarre una sottostringa da una stringa in Excel, 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\/sottostringa-excel\/\" \/>\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 Excel (con esempi) - Statorials\" \/>\n<meta property=\"og:description\" content=\"Questo tutorial spiega come estrarre una sottostringa da una stringa in Excel, con diversi esempi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/it\/sottostringa-excel\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-03T14:48:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/es1.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\/sottostringa-excel\/\",\"url\":\"https:\/\/statorials.org\/it\/sottostringa-excel\/\",\"name\":\"Come estrarre una sottostringa in Excel (con esempi) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/it\/#website\"},\"datePublished\":\"2023-07-03T14:48:38+00:00\",\"dateModified\":\"2023-07-03T14:48:38+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\"},\"description\":\"Questo tutorial spiega come estrarre una sottostringa da una stringa in Excel, con diversi esempi.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/it\/sottostringa-excel\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/it\/sottostringa-excel\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/it\/sottostringa-excel\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Casa\",\"item\":\"https:\/\/statorials.org\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Come estrarre una sottostringa in excel (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 Excel (con esempi) - Statorials","description":"Questo tutorial spiega come estrarre una sottostringa da una stringa in Excel, 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\/sottostringa-excel\/","og_locale":"it_IT","og_type":"article","og_title":"Come estrarre una sottostringa in Excel (con esempi) - Statorials","og_description":"Questo tutorial spiega come estrarre una sottostringa da una stringa in Excel, con diversi esempi.","og_url":"https:\/\/statorials.org\/it\/sottostringa-excel\/","og_site_name":"Statorials","article_published_time":"2023-07-03T14:48:38+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/es1.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\/sottostringa-excel\/","url":"https:\/\/statorials.org\/it\/sottostringa-excel\/","name":"Come estrarre una sottostringa in Excel (con esempi) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/it\/#website"},"datePublished":"2023-07-03T14:48:38+00:00","dateModified":"2023-07-03T14:48:38+00:00","author":{"@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae"},"description":"Questo tutorial spiega come estrarre una sottostringa da una stringa in Excel, con diversi esempi.","breadcrumb":{"@id":"https:\/\/statorials.org\/it\/sottostringa-excel\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/it\/sottostringa-excel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/it\/sottostringa-excel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Casa","item":"https:\/\/statorials.org\/it\/"},{"@type":"ListItem","position":2,"name":"Come estrarre una sottostringa in excel (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\/5106"}],"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=5106"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/5106\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/media?parent=5106"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/categories?post=5106"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/tags?post=5106"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}