{"id":2628,"date":"2023-07-21T10:47:27","date_gmt":"2023-07-21T10:47:27","guid":{"rendered":"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/"},"modified":"2023-07-21T10:47:27","modified_gmt":"2023-07-21T10:47:27","slug":"sotto-la-funzione-airlock","status":"publish","type":"post","link":"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/","title":{"rendered":"Come utilizzare la funzione substr in sas (con esempi)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u00c8 possibile utilizzare la funzione <strong>SUBSTR<\/strong> in SAS per estrarre parte di una stringa.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Questa funzione utilizza la seguente sintassi di base:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>SUBSTR(Origine, Posizione, N)<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Oro:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>Sorgente<\/strong> : il canale da analizzare<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Posizione<\/strong> : la posizione iniziale da leggere<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>N<\/strong> : Il numero di caratteri da leggere<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Ecco i quattro modi pi\u00f9 comuni per utilizzare questa funzionalit\u00e0:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Metodo 1: estrai i primi N caratteri dalla stringa<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    first_four = <span style=\"color: #3366ff;\">substr<\/span> (string_variable, <span style=\"color: #008000;\">1<\/span> , <span style=\"color: #008000;\">4<\/span> );\n<span style=\"color: #800080;\">run<\/span> ;\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Metodo 2: estrae i caratteri in un intervallo di posizioni specifico da una stringa<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    two_through_five = <span style=\"color: #3366ff;\">substr<\/span> (string_variable, <span style=\"color: #008000;\">2<\/span> , <span style=\"color: #008000;\">4<\/span> );\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Metodo 3: estrai gli ultimi N caratteri dalla stringa<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    last_three = <span style=\"color: #3366ff;\">substr<\/span> (string_variable, <span style=\"color: #3366ff;\">length<\/span> (string_variable)- <span style=\"color: #008000;\">2<\/span> , <span style=\"color: #008000;\">3<\/span> );\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Metodo 4: crea una nuova variabile se nella stringa sono presenti caratteri<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    <span style=\"color: #3366ff;\">if<\/span> <span style=\"color: #3366ff;\">substr<\/span> (string_variable, <span style=\"color: #008000;\">1<\/span> , <span style=\"color: #008000;\">4<\/span> ) = ' <span style=\"color: #ff0000;\">some_string<\/span> ' <span style=\"color: #3366ff;\">then<\/span> new_var = ' <span style=\"color: #ff0000;\">Yes<\/span> ';\n    <span style=\"color: #3366ff;\">else<\/span> new_var = ' <span style=\"color: #ff0000;\">No<\/span> ';\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Gli esempi seguenti mostrano come utilizzare ciascun metodo con il seguente set di dati in SAS:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*create dataset*\/\n<span style=\"color: #000000;\"><span style=\"color: #800080;\">data<\/span> original_data;\n    <span style=\"color: #3366ff;\">input<\/span> team $1-10;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nWarriors\nWizards\nRockets\nCeltics\nThunder\n;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view dataset*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = original_data;<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23180 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous-titre1-2.jpg\" alt=\"\" width=\"130\" height=\"173\" srcset=\"\" sizes=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Esempio 1: estrarre i primi N caratteri da una stringa<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Il codice seguente mostra come estrarre i primi 4 caratteri dalla variabile <strong>team<\/strong> :<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*create new dataset*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    first_four = <span style=\"color: #3366ff;\">substr<\/span> (team, <span style=\"color: #008000;\">1<\/span> , <span style=\"color: #008000;\">4<\/span> );\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view new dataset*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = new_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23181 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous-titre2-2.jpg\" alt=\"\" width=\"205\" height=\"171\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Tieni presente che la variabile <strong>first_four<\/strong> contiene i primi quattro caratteri della variabile <strong>team<\/strong> .<\/span><\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Esempio 2: estrarre i caratteri in un intervallo di posizioni specifico da una stringa<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Il codice seguente mostra come estrarre i caratteri dalle posizioni da 2 a 5 della variabile <strong>team<\/strong> :<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*create new dataset*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    two_through_five = <span style=\"color: #3366ff;\">substr<\/span> (team, <span style=\"color: #008000;\">2<\/span> , <span style=\"color: #008000;\">4<\/span> );\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view new dataset*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = new_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23182 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous-titre3-1.jpg\" alt=\"\" width=\"255\" height=\"164\" srcset=\"\" sizes=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Esempio 3: estrarre gli ultimi N caratteri da una stringa<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Il codice seguente mostra come estrarre gli ultimi 3 caratteri dalla variabile <strong>team<\/strong> :<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*create new dataset*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    last_three = <span style=\"color: #3366ff;\">substr<\/span> (team <span style=\"color: #008000;\">,<\/span> <span style=\"color: #3366ff;\">length<\/span> (team) <span style=\"color: #008000;\">-2,3<\/span> );\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view new dataset*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = new_data;<\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23183 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous-titre4.jpg\" alt=\"\" width=\"200\" height=\"167\" srcset=\"\" sizes=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Esempio 4: crea una nuova variabile se nella stringa sono presenti caratteri<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Il codice seguente mostra come creare una nuova variabile denominata <strong>W_Team<\/strong> che restituisce &#8221; <strong>yes<\/strong> &#8221; se il primo carattere del nome del team \u00e8 &#8220;W&#8221; o &#8221; <strong>no<\/strong> &#8221; se i primi caratteri non sono &#8220;W&#8221;.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*create new dataset*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    <span style=\"color: #3366ff;\">if<\/span> <span style=\"color: #3366ff;\">substr<\/span> (team, <span style=\"color: #008000;\">1<\/span> , <span style=\"color: #008000;\">1<\/span> ) = ' <span style=\"color: #ff0000;\">W<\/span> ' <span style=\"color: #3366ff;\">then<\/span> W_Team = ' <span style=\"color: #ff0000;\">Yes<\/span> ';\n<span style=\"color: #3366ff;\">else<\/span> W_Team = ' <span style=\"color: #ff0000;\">No<\/span> ';\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view new dataset*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = new_data;<\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23184 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous-titre5.jpg\" alt=\"\" width=\"198\" height=\"167\" 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 attivit\u00e0 comuni in SAS:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/it\/normalizzare-i-dati-nella-camera-di-equilibrio\/\" target=\"_blank\" rel=\"noopener\">Come normalizzare i dati in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/catena-sostitutiva-della-camera-dequilibrio\/\" target=\"_blank\" rel=\"noopener\">Come sostituire i caratteri in una stringa in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/senza-sostituire-i-valori-mancanti-con-zero\/\" target=\"_blank\" rel=\"noopener\">Come sostituire i valori mancanti con zero in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/non-rimuovere-i-duplicati\/\" target=\"_blank\" rel=\"noopener\">Come rimuovere i duplicati in SAS<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00c8 possibile utilizzare la funzione SUBSTR in SAS per estrarre parte di una stringa. Questa funzione utilizza la seguente sintassi di base: SUBSTR(Origine, Posizione, N) Oro: Sorgente : il canale da analizzare Posizione : la posizione iniziale da leggere N : Il numero di caratteri da leggere Ecco i quattro modi pi\u00f9 comuni per utilizzare [&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 utilizzare la funzione SUBSTR in SAS (con esempi) - Statorials<\/title>\n<meta name=\"description\" content=\"Questo tutorial spiega come utilizzare la funzione SUBSTR in SAS, 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\/sotto-la-funzione-airlock\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Come utilizzare la funzione SUBSTR in SAS (con esempi) - Statorials\" \/>\n<meta property=\"og:description\" content=\"Questo tutorial spiega come utilizzare la funzione SUBSTR in SAS, con diversi esempi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-21T10:47:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous-titre1-2.jpg\" \/>\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\/sotto-la-funzione-airlock\/\",\"url\":\"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/\",\"name\":\"Come utilizzare la funzione SUBSTR in SAS (con esempi) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/it\/#website\"},\"datePublished\":\"2023-07-21T10:47:27+00:00\",\"dateModified\":\"2023-07-21T10:47:27+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\"},\"description\":\"Questo tutorial spiega come utilizzare la funzione SUBSTR in SAS, con diversi esempi.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Casa\",\"item\":\"https:\/\/statorials.org\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Come utilizzare la funzione substr in sas (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 utilizzare la funzione SUBSTR in SAS (con esempi) - Statorials","description":"Questo tutorial spiega come utilizzare la funzione SUBSTR in SAS, 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\/sotto-la-funzione-airlock\/","og_locale":"it_IT","og_type":"article","og_title":"Come utilizzare la funzione SUBSTR in SAS (con esempi) - Statorials","og_description":"Questo tutorial spiega come utilizzare la funzione SUBSTR in SAS, con diversi esempi.","og_url":"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/","og_site_name":"Statorials","article_published_time":"2023-07-21T10:47:27+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sous-titre1-2.jpg"}],"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\/sotto-la-funzione-airlock\/","url":"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/","name":"Come utilizzare la funzione SUBSTR in SAS (con esempi) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/it\/#website"},"datePublished":"2023-07-21T10:47:27+00:00","dateModified":"2023-07-21T10:47:27+00:00","author":{"@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae"},"description":"Questo tutorial spiega come utilizzare la funzione SUBSTR in SAS, con diversi esempi.","breadcrumb":{"@id":"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/it\/sotto-la-funzione-airlock\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Casa","item":"https:\/\/statorials.org\/it\/"},{"@type":"ListItem","position":2,"name":"Come utilizzare la funzione substr in sas (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\/2628"}],"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=2628"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/2628\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/media?parent=2628"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/categories?post=2628"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/tags?post=2628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}