{"id":4226,"date":"2018-08-08T08:00:19","date_gmt":"2018-08-08T07:00:19","guid":{"rendered":"https:\/\/code-maze.com\/?p=4226"},"modified":"2021-12-16T12:00:00","modified_gmt":"2021-12-16T11:00:00","slug":"csharp-linear-structures-input-output","status":"publish","type":"post","link":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/","title":{"rendered":"Linear Structures in C# with Inputs and Printing Output Results"},"content":{"rendered":"<p>In this article, we are going to learn how to solve simple problems by using linear structures in C#. We are going to accept inputs, work with them and print the output to the console window.<\/p>\n<div style=\"padding: 20px; border-left: 5px #dc2323 solid; display: block; margin-bottom: 20px; box-shadow: 1px 1px 5px 0px lightgrey;\">To download a source code, you can visit our <a href=\"https:\/\/github.com\/CodeMazeBlog\/csharp-back-to-basics\/tree\/linear-structures\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Input and Output Source Code<\/a> repository.<\/div>\n<p>For the complete navigation of this series check out: <a href=\"https:\/\/code-maze.com\/csharp-back-to-basics\/\" target=\"_blank\" rel=\"noopener noreferrer\">C# Back to Basics.<\/a><\/p>\n<p>We are going to divide this article into the following sections:<\/p>\n<ul>\n<li><a href=\"#print-sum\">Printing the Sum of Two Integer Values using Linear Structures in C#<\/a><\/li>\n<li><a href=\"#using-inputs\">Using Inputs (name and last name) and Printing Out the Full Name with Linear Structures in C#<\/a><\/li>\n<li><a href=\"#conclusion\">Conclusion<\/a><\/li>\n<\/ul>\n<p>So let\u2019s start.<\/p>\n<h2 id=\"print-sum\">Printing the Sum of Two Integer Values using Linear Structures in C#<\/h2>\n<p><em>Example 1: Create an application that prints out the sum of two integer values that the user inputs in the console window.<\/em><\/p>\n<p>Let\u2019s create a new console application and name it <code>SumGenerator<\/code>. Then let\u2019s type this code inside the <code>Main<\/code> method:<\/p>\n<pre  class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\">namespace SumGenerator\r\n{\r\n    class Program\r\n    {\r\n        static void Main(string[] args)\r\n        {\r\n            Console.WriteLine(\"Write the first integer:\");\r\n            int first = Convert.ToInt32(Console.ReadLine());\r\n\r\n            Console.WriteLine(\"Write the second integer:\");\r\n            int second = Convert.ToInt32(Console.ReadLine());\r\n\r\n            int result = first + second;\r\n            Console.WriteLine($\"The result is {result}\");\r\n\r\n            Console.ReadKey();\r\n        }\r\n    }\r\n}\r\n<\/pre>\n<p>With the <code>Console.WriteLine()<\/code> statement, we display the message on the console window and move to the next line. The <code>Console.ReadLine()<\/code> statement will read our input, but it is of type string and what we need is an int type. So, we need to convert it with the <code>Convert.ToInt32()<\/code> statement. Finally, we calculate the sum and print it out. The <code>Console.ReadKey()<\/code> statement is here just to keep our console window open.<\/p>\n<p>Let\u2019s press F5 to start our application and enter two integer numbers:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"raw\">Write the first integer:\r\n5\r\nWrite the second integer:\r\nThe result is 33<\/pre>\n<h2 id=\"using-inputs\">Using Inputs (first name and last name) and Printing Out the Full Name with Linear Structures in C#<\/h2>\n<p><em>Example 2: Write an application that for two provided inputs (name and last name), prints out the full name in a format: name &lt;space&gt; last name.<\/em><\/p>\n<p>Let\u2019s create a new console application and write the code:<\/p>\n<pre  class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\">namespace FullNameGenerator\r\n{\r\n    class Program\r\n    {\r\n        static void Main(string[] args)\r\n        {\r\n            Console.WriteLine(\"What is your first name:\");\r\n            string name = Console.ReadLine();\r\n\r\n            Console.WriteLine(\"What is your last name:\");\r\n            string lastName = Console.ReadLine();\r\n\r\n            string fullName = name + \" \" + lastName;\r\n            Console.WriteLine($\"Your full name is: {fullName}\");\r\n\r\n            Console.ReadKey();\r\n        }\r\n    }\r\n}\r\n<\/pre>\n<p>That&#8217;s it. If we run our project by hitting F5, we will see the result with the name and last name, space-separated.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Excellent.<\/p>\n<p>Now we know how to manipulate inputs in our applications and how to display the result in the console window. Furthermore, we have used the data conversion from <code>string<\/code> to <code>int<\/code>, to be able to sum the inputs from a user.<\/p>\n<p>In <a href=\"https:\/\/code-maze.com\/csharp-basics-string-methods\/\" target=\"_blank\" rel=\"noopener\">the next post<\/a>, we are going to show you how to work with strings in C#.<\/p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we are going to learn how to solve simple problems by using linear structures in C#. We are going to accept inputs, work with them and print the output to the console window. For the complete navigation of this series check out: C# Back to Basics. We are going to divide this [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":54452,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[505,12],"tags":[239,237,236,238,240,241],"class_list":["post-4226","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-basic","category-csharp","tag-console","tag-inputs","tag-linear-structures","tag-outputs","tag-readline","tag-writeline","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linear Structures in C# with Inputs and Printing Output Results<\/title>\n<meta name=\"description\" content=\"Find out more about Input and Output in C#, how to work with it by accepting inputs from a user, processing them, and print the output.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linear Structures in C# with Inputs and Printing Output Results\" \/>\n<meta property=\"og:description\" content=\"Find out more about Input and Output in C#, how to work with it by accepting inputs from a user, processing them, and print the output.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/\" \/>\n<meta property=\"og:site_name\" content=\"Code Maze\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-08T07:00:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-16T11:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"620\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Marinko Spasojevi\u0107\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/CodeMazeBlog\" \/>\n<meta name=\"twitter:site\" content=\"@CodeMazeBlog\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Marinko Spasojevi\u0107\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/\"},\"author\":{\"name\":\"Marinko Spasojevi\u0107\",\"@id\":\"https:\/\/code-maze.com\/#\/schema\/person\/d6fa06e66820968d19b39fb63cff2533\"},\"headline\":\"Linear Structures in C# with Inputs and Printing Output Results\",\"datePublished\":\"2018-08-08T07:00:19+00:00\",\"dateModified\":\"2021-12-16T11:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/\"},\"wordCount\":391,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/code-maze.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png\",\"keywords\":[\"Console\",\"Inputs\",\"Linear Structures\",\"Outputs\",\"ReadLine\",\"WriteLine\"],\"articleSection\":[\"Basic\",\"C#\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/\",\"url\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/\",\"name\":\"Linear Structures in C# with Inputs and Printing Output Results\",\"isPartOf\":{\"@id\":\"https:\/\/code-maze.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png\",\"datePublished\":\"2018-08-08T07:00:19+00:00\",\"dateModified\":\"2021-12-16T11:00:00+00:00\",\"description\":\"Find out more about Input and Output in C#, how to work with it by accepting inputs from a user, processing them, and print the output.\",\"breadcrumb\":{\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage\",\"url\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png\",\"contentUrl\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png\",\"width\":1100,\"height\":620,\"caption\":\"05 input output\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/code-maze.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linear Structures in C# with Inputs and Printing Output Results\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/code-maze.com\/#website\",\"url\":\"https:\/\/code-maze.com\/\",\"name\":\"Code Maze\",\"description\":\"Learn. Code. Succeed.\",\"publisher\":{\"@id\":\"https:\/\/code-maze.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/code-maze.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/code-maze.com\/#organization\",\"name\":\"Code Maze\",\"url\":\"https:\/\/code-maze.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/code-maze.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/Code-Maze-Only-Logo-Transparent-HRez.png\",\"contentUrl\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/Code-Maze-Only-Logo-Transparent-HRez.png\",\"width\":3511,\"height\":3510,\"caption\":\"Code Maze\"},\"image\":{\"@id\":\"https:\/\/code-maze.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/CodeMazeBlog\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/code-maze.com\/#\/schema\/person\/d6fa06e66820968d19b39fb63cff2533\",\"name\":\"Marinko Spasojevi\u0107\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/code-maze.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/marinko-1x1-3-150x150.jpg\",\"contentUrl\":\"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/marinko-1x1-3-150x150.jpg\",\"caption\":\"Marinko Spasojevi\u0107\"},\"description\":\"Hi, my name is Marinko Spasojevic. Currently, I work as a full-time .NET developer and my passion is web application development. Just getting something to work is not enough for me. To make it just how I like it, it must be readable, reusable, and easy to maintain. Prior to being an author on the CodeMaze blog, I had been working as a professor of Computer Science for several years. So, sharing knowledge while working as a full-time developer comes naturally to me.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/marinko-spasojevic\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/CodeMazeBlog\"],\"url\":\"https:\/\/code-maze.com\/author\/marinko\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linear Structures in C# with Inputs and Printing Output Results","description":"Find out more about Input and Output in C#, how to work with it by accepting inputs from a user, processing them, and print the output.","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:\/\/code-maze.com\/csharp-linear-structures-input-output\/","og_locale":"en_US","og_type":"article","og_title":"Linear Structures in C# with Inputs and Printing Output Results","og_description":"Find out more about Input and Output in C#, how to work with it by accepting inputs from a user, processing them, and print the output.","og_url":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/","og_site_name":"Code Maze","article_published_time":"2018-08-08T07:00:19+00:00","article_modified_time":"2021-12-16T11:00:00+00:00","og_image":[{"width":1100,"height":620,"url":"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png","type":"image\/png"}],"author":"Marinko Spasojevi\u0107","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/CodeMazeBlog","twitter_site":"@CodeMazeBlog","twitter_misc":{"Written by":"Marinko Spasojevi\u0107","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#article","isPartOf":{"@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/"},"author":{"name":"Marinko Spasojevi\u0107","@id":"https:\/\/code-maze.com\/#\/schema\/person\/d6fa06e66820968d19b39fb63cff2533"},"headline":"Linear Structures in C# with Inputs and Printing Output Results","datePublished":"2018-08-08T07:00:19+00:00","dateModified":"2021-12-16T11:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/"},"wordCount":391,"commentCount":0,"publisher":{"@id":"https:\/\/code-maze.com\/#organization"},"image":{"@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage"},"thumbnailUrl":"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png","keywords":["Console","Inputs","Linear Structures","Outputs","ReadLine","WriteLine"],"articleSection":["Basic","C#"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/","url":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/","name":"Linear Structures in C# with Inputs and Printing Output Results","isPartOf":{"@id":"https:\/\/code-maze.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage"},"image":{"@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage"},"thumbnailUrl":"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png","datePublished":"2018-08-08T07:00:19+00:00","dateModified":"2021-12-16T11:00:00+00:00","description":"Find out more about Input and Output in C#, how to work with it by accepting inputs from a user, processing them, and print the output.","breadcrumb":{"@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/code-maze.com\/csharp-linear-structures-input-output\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#primaryimage","url":"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png","contentUrl":"https:\/\/code-maze.com\/wp-content\/uploads\/2018\/08\/05-input-output.png","width":1100,"height":620,"caption":"05 input output"},{"@type":"BreadcrumbList","@id":"https:\/\/code-maze.com\/csharp-linear-structures-input-output\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/code-maze.com\/"},{"@type":"ListItem","position":2,"name":"Linear Structures in C# with Inputs and Printing Output Results"}]},{"@type":"WebSite","@id":"https:\/\/code-maze.com\/#website","url":"https:\/\/code-maze.com\/","name":"Code Maze","description":"Learn. Code. Succeed.","publisher":{"@id":"https:\/\/code-maze.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/code-maze.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/code-maze.com\/#organization","name":"Code Maze","url":"https:\/\/code-maze.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/code-maze.com\/#\/schema\/logo\/image\/","url":"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/Code-Maze-Only-Logo-Transparent-HRez.png","contentUrl":"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/Code-Maze-Only-Logo-Transparent-HRez.png","width":3511,"height":3510,"caption":"Code Maze"},"image":{"@id":"https:\/\/code-maze.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/CodeMazeBlog"]},{"@type":"Person","@id":"https:\/\/code-maze.com\/#\/schema\/person\/d6fa06e66820968d19b39fb63cff2533","name":"Marinko Spasojevi\u0107","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/code-maze.com\/#\/schema\/person\/image\/","url":"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/marinko-1x1-3-150x150.jpg","contentUrl":"https:\/\/code-maze.com\/wp-content\/uploads\/2020\/01\/marinko-1x1-3-150x150.jpg","caption":"Marinko Spasojevi\u0107"},"description":"Hi, my name is Marinko Spasojevic. Currently, I work as a full-time .NET developer and my passion is web application development. Just getting something to work is not enough for me. To make it just how I like it, it must be readable, reusable, and easy to maintain. Prior to being an author on the CodeMaze blog, I had been working as a professor of Computer Science for several years. So, sharing knowledge while working as a full-time developer comes naturally to me.","sameAs":["https:\/\/www.linkedin.com\/in\/marinko-spasojevic\/","https:\/\/x.com\/https:\/\/twitter.com\/CodeMazeBlog"],"url":"https:\/\/code-maze.com\/author\/marinko\/"}]}},"_links":{"self":[{"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/posts\/4226","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/comments?post=4226"}],"version-history":[{"count":3,"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/posts\/4226\/revisions"}],"predecessor-version":[{"id":61618,"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/posts\/4226\/revisions\/61618"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/media\/54452"}],"wp:attachment":[{"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/media?parent=4226"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/categories?post=4226"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/code-maze.com\/wp-json\/wp\/v2\/tags?post=4226"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}