{"id":13372,"date":"2020-03-16T03:56:08","date_gmt":"2020-03-16T10:56:08","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=13372"},"modified":"2023-12-01T02:31:52","modified_gmt":"2023-12-01T10:31:52","slug":"java-string-to-int","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/","title":{"rendered":"How to Convert a String to an Integer in Java"},"content":{"rendered":"\n<p>Programmers use different data types to store different kinds of values. For instance, they use strings to store text-based data and integers to store whole numbers.<br><\/p>\n\n\n\n<p>When you are writing code, you may decide that you want to convert a value\u2019s data type to another data type. One of the most common type conversions performed in Java is converting a string to an integer. That\u2019s where the parseInt() and valueOf() methods come in.<br><\/p>\n\n\n\n<p>You can use the Java parseInt() and valueOf() methods to convert a string to an integer. In this tutorial, we will discuss\u2014with examples\u2014how to do so.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Java Data Types<\/h2>\n\n\n\n<p>Java, like any other programming language, uses different data types to classify the type of data a value holds. True\/false values, for instance, are stored as booleans, and text is stored as a string.<br><\/p>\n\n\n\n<p>This is an important feature in programming because the data type of a value will determine how that value can be manipulated. For instance, you can perform mathematical operations on integers and real numbers but not on strings.<br><\/p>\n\n\n\n<p>When you\u2019re programming, you may encounter a situation where you need to convert a string into an integer. For instance, if you want to perform a mathematical operation on a number that is stored as a string, you would need to convert the data type of the value.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Java String to Integer: Using parseInt()<\/h2>\n\n\n\n<p>You can use the parseInt() method to perform a string to integer conversion in Java. parseInt() accepts one parameter: the string value you want to convert into an integer.<br><\/p>\n\n\n\n<p>The syntax for parseInt() is as follows:<br><\/p>\n\n\n\n<p>Integer.parseInt(value);<br><\/p>\n\n\n\n<p>Suppose we are writing a program for a theme park that checks the age of a customer on admission to certain attractions. The customer\u2019s age is stored as a string, but we want to convert it to an integer so we can compare it to the appropriate age minimum. We could convert the customer\u2019s age (15 in this example) to an integer using this code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>class ConvertAge {\n\tpublic static void main(String[] args) {\n\t\tString age = \"15\";\n\t\t\n\t\tInteger integer_age = Integer.parseInt(age);\n\t\tSystem.out.println(\"This customer's age is: \" + integer_age);\n\t}\n}\n<\/pre><\/div>\n\n\n\n<p>Our code returns:<br><\/p>\n\n\n\n<p><code>This customer\u2019s age is: 15<br><\/code><\/p>\n\n\n\n<p>Let\u2019s break down our code. On the first line in our <code>ConvertAge<\/code> class, we declare a string\u2014called <code>age<\/code>\u2014that stores the age of our customer.<br><\/p>\n\n\n\n<p>Then we use the parseInt() method to parse the string value and convert it to an integer. We assign the new integer value to the variable <code>integer_age<\/code>. Finally, we print out a message stating: \u201cThis customer\u2019s age is: \u201d, followed by the age of the customer.<br><\/p>\n\n\n\n<p>We can check the type of our data by using the <code>instanceof<\/code> keyword. instanceof returns a boolean value (<code>true<\/code> or <code>false<\/code>) depending on whether the value we are checking holds a particular data type. The following code, when added to the end of our previous program, allows us to verify that <code>integer_age<\/code> is an integer:<br><\/p>\n\n\n\n<p>\u2026<\/p>\n\n\n\n<p>\t\tSystem.out.println(\u201cIs age an integer? \u201d + age instanceof Integer);<\/p>\n\n\n\n<p>\u2026<br><\/p>\n\n\n\n<p>Our code returns:<br><\/p>\n\n\n\n<p><code>This customer\u2019s age is: 15<\/code><\/p>\n\n\n\n<p><code>Is age an integer? true<br><\/code><\/p>\n\n\n\n<p>In our code, we use age instanceof Integer to check whether the age variable is an integer. age is an Integer, so the instanceof keyword returns: true.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Java String to Integer: Using valueOf()<\/h2>\n\n\n\n<p>You can also use the valueOf() method to convert a string to an integer in Java. valueOf() accepts one parameter: the value you want to convert to an integer.<br><\/p>\n\n\n\n<p>Here\u2019s the syntax for the valueOf() method:<br><\/p>\n\n\n\n<p><code>Integer.valueOf(value);<br><\/code><\/p>\n\n\n\n<p>Let\u2019s walk through an example to demonstrate how the valueOf() method works. Suppose we are writing a program that stores the quantities of the Columbian and Italian roast coffee beans sold in a coffee shop. Our program currently stores these quantities as a string, but we want to convert them into integers. We could use the following code to accomplish this task:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>class ConvertQuantities {\n\tpublic static void main(String[] args) {\n\t\tString columbian = \"15\";\n\t\tString italian_roast = \"19\";\n\t\t\n\t\tInteger columbian_integer = Integer.valueOf(columbian);\nInteger italian_roast_integer = Integer.valueOf(italian_roast);\n\t\tSystem.out.println(\"Quantity of Columbian coffee beans: \" + columbian_integer);\n\t\tSystem.out.println(\"Quantity of Italian roast coffee beans: \" + italian_roast_integer);\n\t}\n}\n<\/pre><\/div>\n\n\n\n<p>Our code returns:<br><\/p>\n\n\n\n<p><code>Quantity of Columbian coffee beans: 15<\/code><\/p>\n\n\n\n<p><code>Quantity of Italian roast coffee beans: 19<br><\/code><\/p>\n\n\n\n<p>Let\u2019s break down our code. On the first line in our ConvertQuantities class, we declare a variable called columbian and assign it the value 15. Then we declare a variable called <code>italian_roast<\/code> and assign it the value 19.<br><\/p>\n\n\n\n<p>We then use the valueOf() method to convert the value of columbian to an integer and assign that integer to the variable <code>columbian_integer<\/code>.<br><\/p>\n\n\n\n<p>We also use the valueOf() method to convert the value of <code>italian_roast<\/code> to an integer and assign that integer value to the variable <code>italian_roast_integer<\/code>.&nbsp;<br><\/p>\n\n\n\n<p>Then, we print out the quantities of both beans, using the integer values of each bean.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>There are two ways to convert a string to an integer in Java: the parseInt() method and the valueOf() method. This tutorial discussed the basics of data types in Java and how you can use both methods to convert a string to an integer. We also walked through an example of each method in action.<br><\/p>\n\n\n\n<p>Now you\u2019re equipped with the knowledge you need to convert strings to integers in Java like a pro!<\/p>\n","protected":false},"excerpt":{"rendered":"Programmers use different data types to store different kinds of values. For instance, they use strings to store text-based data and integers to store whole numbers. When you are writing code, you may decide that you want to convert a value\u2019s data type to another data type. One of the most common type conversions performed&hellip;","protected":false},"author":240,"featured_media":13373,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17289],"tags":[],"class_list":{"0":"post-13372","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-java"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Java","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":"","is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Convert a String to an Integer in Java | Career Karma<\/title>\n<meta name=\"description\" content=\"Converting a string to an integer is a common operation in Java code. Learn more in this Career Karma article.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Convert a String to an Integer in Java\" \/>\n<meta property=\"og:description\" content=\"Converting a string to an integer is a common operation in Java code. Learn more in this Career Karma article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-16T10:56:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T10:31:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"How to Convert a String to an Integer in Java\",\"datePublished\":\"2020-03-16T10:56:08+00:00\",\"dateModified\":\"2023-12-01T10:31:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/\"},\"wordCount\":794,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg\",\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/\",\"name\":\"How to Convert a String to an Integer in Java | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg\",\"datePublished\":\"2020-03-16T10:56:08+00:00\",\"dateModified\":\"2023-12-01T10:31:52+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"Converting a string to an integer is a common operation in Java code. Learn more in this Career Karma article.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\/\/careerkarma.com\/blog\/java\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Convert a String to an Integer in Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Convert a String to an Integer in Java | Career Karma","description":"Converting a string to an integer is a common operation in Java code. Learn more in this Career Karma article.","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:\/\/careerkarma.com\/blog\/java-string-to-int\/","og_locale":"en_US","og_type":"article","og_title":"How to Convert a String to an Integer in Java","og_description":"Converting a string to an integer is a common operation in Java code. Learn more in this Career Karma article.","og_url":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-03-16T10:56:08+00:00","article_modified_time":"2023-12-01T10:31:52+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"How to Convert a String to an Integer in Java","datePublished":"2020-03-16T10:56:08+00:00","dateModified":"2023-12-01T10:31:52+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/"},"wordCount":794,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg","articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/java-string-to-int\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/","url":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/","name":"How to Convert a String to an Integer in Java | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg","datePublished":"2020-03-16T10:56:08+00:00","dateModified":"2023-12-01T10:31:52+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"Converting a string to an integer is a common operation in Java code. Learn more in this Career Karma article.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/java-string-to-int\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/man-sitting-on-green-chair-while-using-laptop-374831.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/java-string-to-int\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/careerkarma.com\/blog\/java\/"},{"@type":"ListItem","position":3,"name":"How to Convert a String to an Integer in Java"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/13372","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=13372"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/13372\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/13373"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=13372"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=13372"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=13372"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}