{"id":17436,"date":"2023-10-09T09:03:54","date_gmt":"2023-10-09T08:03:54","guid":{"rendered":"https:\/\/www.baeldung.com\/java-convert-char-int-array"},"modified":"2023-10-09T09:03:54","modified_gmt":"2023-10-09T08:03:54","slug":"convert-char-array-to-int-array-in-java","status":"publish","type":"post","link":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/2023\/10\/09\/convert-char-array-to-int-array-in-java\/","title":{"rendered":"Convert Char Array to Int Array in Java"},"content":{"rendered":"<p><img src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2.jpg\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\" decoding=\"async\" style=\"float: left; margin-right: 5px;\" srcset=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2.jpg 952w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2-300x157.jpg 300w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2-768x402.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" \/><\/p>\n<h2 id=\"bd-overview\" data-id=\"overview\">1. Overview<\/h2>\n<div class=\"bd-anchor\" id=\"overview\"><\/div>\n<p>In this short tutorial, we&#8217;ll explore different ways of converting a <em>char<\/em> array to an <em>int<\/em> array in Java.<\/p>\n<p>First, we&#8217;ll use methods and classes from Java 7. Then, we&#8217;ll see how to achieve the same objective using Java 8 <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-8-streams\">Stream API<\/a>.<\/p>\n<h2 id=\"bd-using-character-class\" data-id=\"using-character-class\">2. Using <em>Character<\/em> Class<\/h2>\n<div class=\"bd-anchor\" id=\"using-character-class\"><\/div>\n<p>The <em>Character<\/em> class wraps a <em>char<\/em> value in an object. <strong>It provides various methods to work and manipulate primitive characters as objects<\/strong>.<\/p>\n<p>Among these handy methods, we find <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/docs.oracle.com\/en\/java\/javase\/17\/docs\/api\/java.base\/java\/lang\/Character.html#getNumericValue(char)\"><em>getNumericValue()<\/em><\/a> and <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/docs.oracle.com\/en\/java\/javase\/17\/docs\/api\/java.base\/java\/lang\/Character.html#digit(char,int)\"><em>digit()<\/em><\/a>. So, let&#8217;s dig in and see how to use them to convert a <em>char<\/em> array into an <em>int<\/em> array.<\/p>\n<h3 id=\"bd-1-charactergetnumericvalue\" data-id=\"1-charactergetnumericvalue\">2.1. <em>Character#getNumericValue()<\/em><\/h3>\n<div class=\"bd-anchor\" id=\"1-charactergetnumericvalue\"><\/div>\n<p>This method offers a straightforward and concise way to return the <em>int<\/em> value of the given character. For instance, the character <em>&#8216;6&#8217;<\/em> will return 6.<\/p>\n<p>So, let&#8217;s see in action:<\/p>\n<pre><code class=\"language-java\">int[] usingGetNumericValueMethod(char[] chars) {\r\n    if (chars == null) {\r\n        return null;\r\n    }\r\n    int[] ints = new int[chars.length];\r\n    for (int i = 0; i &lt; chars.length; i++) {\r\n        ints[i] = Character.getNumericValue(chars[i]);\r\n    }\r\n    return ints;\r\n}<\/code><\/pre>\n<p>As we can see, we iterated through the <em>char<\/em> array. Then, we called the <em>getNumericValue()<\/em> to get the integer value of each character.<\/p>\n<p><strong>An important caveat is that if the specified character does not have any <em>int<\/em> value, -1 is returned instead<\/strong>.<\/p>\n<p>Please bear in mind that we can rewrite our traditional loop in a more functional way:<\/p>\n<pre><code class=\"language-java\">Arrays.setAll(ints, i -&gt; Character.getNumericValue(chars[i]));<\/code><\/pre>\n<p>Now, let&#8217;s add a test case:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenCharArray_whenUsingGetNumericValueMethod_shouldGetIntArray() {\r\n    int[] expected = { 2, 3, 4, 5 };\r\n    char[] chars = { &#039;2&#039;, &#039;3&#039;, &#039;4&#039;, &#039;5&#039; };\r\n    int[] result = CharArrayToIntArrayUtils.usingGetNumericValueMethod(chars);\r\n    assertArrayEquals(expected, result);\r\n}<\/code><\/pre>\n<h3 id=\"bd-2-characterdigit\" data-id=\"2-characterdigit\">2.2. <em>Character#digit()<\/em><\/h3>\n<div class=\"bd-anchor\" id=\"2-characterdigit\"><\/div>\n<p>Typically, <em>digit(char ch, int radix)<\/em> is another method that we can use to address our central question. This method returns the numeric value of the given character based on the specified radix.<\/p>\n<p>Now, let&#8217;s exemplify how to use <em>digit()<\/em> to convert an array of characters into an array of integers:<\/p>\n<pre><code class=\"language-java\">int[] usingDigitMethod(char[] chars) {\r\n    int[] ints = new int[chars.length];\r\n    for (int i = 0; i &lt; chars.length; i++) {\r\n        ints[i] = Character.digit(chars[i], 10);\r\n    }\r\n    return ints;\r\n}<\/code><\/pre>\n<p><strong>In short, the most common radix is 10, which denotes the decimal system (0-9). For example, the character &#8216;7&#8217; in base 10 is simply equal to 7<\/strong>.<\/p>\n<p>Lastly, we&#8217;ll create another test case to confirm our method:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenCharArray_whenUsingDigitMethod_shouldGetIntArray() {\r\n    int[] expected = { 1, 2, 3, 6 };\r\n    char[] chars = { &#039;1&#039;, &#039;2&#039;, &#039;3&#039;, &#039;6&#039; };\r\n    int[] result = CharArrayToIntArrayUtils.usingDigitMethod(chars);\r\n    assertArrayEquals(expected, result);\r\n}<\/code><\/pre>\n<h2 id=\"bd-using-the-stream-api\" data-id=\"using-the-stream-api\">3. Using the Stream API<\/h2>\n<div class=\"bd-anchor\" id=\"using-the-stream-api\"><\/div>\n<p>Alternatively, we can use the stream API to process the <em>char<\/em> array to <em>int<\/em> array conversion. So, let&#8217;s see it in practice:<\/p>\n<pre><code class=\"language-java\">int[] usingStreamApiMethod(char[] chars) {\r\n    return new String(chars).chars()\r\n      .map(c -&gt; c - 48)\r\n      .toArray();\r\n}<\/code><\/pre>\n<p>As shown above, we created a <em>String<\/em> object from the <em>char<\/em> array. Then, we used the <em>chars()<\/em> and <em>map()<\/em> methods to transform each character into an <em>int<\/em> value.<\/p>\n<p><strong>Please note that the character &#8216;0&#8217; is 48 in ASCII, &#8216;1&#8217; is 49, and so on. Thus, &#8216;0&#8217; &#8211; 48 equals 0, and so on. This why subtracting by 48 translates the characters &#8216;0&#8217;..&#8217;9&#8242; to the values 0..9<\/strong>.<\/p>\n<p>Next, let&#8217;s add another test case:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenCharArray_whenUsingStreamApi_shouldGetIntArray() {\r\n    int[] expected = { 9, 8, 7, 6 };\r\n    char[] chars = { &#039;9&#039;, &#039;8&#039;, &#039;7&#039;, &#039;6&#039; };\r\n    int[] result = CharArrayToIntArrayUtils.usingStreamApiMethod(chars);\r\n    assertArrayEquals(expected, result);\r\n}<\/code><\/pre>\n<h2 id=\"bd-using-integerparseint\" data-id=\"using-integerparseint\">4. Using <em>Integer#parseInt()<\/em><\/h2>\n<div class=\"bd-anchor\" id=\"using-integerparseint\"><\/div>\n<p><a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-convert-string-to-int-or-integer#Integer\"><em>parseInt()<\/em><\/a> is another great option to consider when converting a <em>char<\/em> into an <em>int<\/em>. This method lets us get the primitive <em>int<\/em> value of a given string:<\/p>\n<pre><code class=\"language-java\">int[] usingParseIntMethod(char[] chars) {\r\n    int[] ints = new int[chars.length];\r\n    for (int i = 0; i &lt; chars.length; i++) {\r\n        ints[i] = Integer.parseInt(String.valueOf(chars[i]));\r\n    }\r\n    return ints;\r\n}<\/code><\/pre>\n<p>Here, we need to convert each character into a string first before returning the int value.<\/p>\n<p>As always, we&#8217;ll create a test case to unit test our method:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenCharArray_whenUsingParseIntMethod_shouldGetIntArray() {\r\n    int[] expected = { 9, 8, 7, 6 };\r\n    char[] chars = { &#039;9&#039;, &#039;8&#039;, &#039;7&#039;, &#039;6&#039; };\r\n    int[] result = CharArrayToIntArrayUtils.usingParseIntMethod(chars);\r\n    assertArrayEquals(expected, result);\r\n}<\/code><\/pre>\n<h2 id=\"bd-conclusion\" data-id=\"conclusion\">5. Conclusion<\/h2>\n<div class=\"bd-anchor\" id=\"conclusion\"><\/div>\n<p>In this short article, we explained in detail how to convert a <em>char<\/em> array into an <em>int<\/em> array in Java.<\/p>\n<p>As always, the full code used in the article is available <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/github.com\/eugenp\/tutorials\/tree\/master\/core-java-modules\/core-java-arrays-convert\">over on GitHub<\/a>.<\/p>\n<p><Img align=\"left\" border=\"0\" height=\"1\" width=\"1\" alt=\"\" style=\"border:0;float:left;margin:0;padding:0;width:1px!important;height:1px!important;\" hspace=\"0\" src=\"https:\/\/feeds.feedblitz.com\/~\/i\/798526544\/0\/baeldung\"><\/p>\n<div style=\"clear:both;padding-top:0.2em;\"><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/fblike20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Pin it!\" href=\"https:\/\/feeds.feedblitz.com\/_\/29\/798526544\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2016%2F10%2Fsocial-Java-On-Baeldung-2.jpg\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/pinterest20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Tweet This\" href=\"https:\/\/feeds.feedblitz.com\/_\/24\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/twitter20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Subscribe by email\" href=\"https:\/\/feeds.feedblitz.com\/_\/19\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/email20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Subscribe by RSS\" href=\"https:\/\/feeds.feedblitz.com\/_\/20\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/rss20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a rel=\"NOFOLLOW\" title=\"View Comments\" href=\"https:\/\/www.baeldung.com\/java-convert-char-int-array#respond\"><img decoding=\"async\" height=\"20\" style=\"border:0;margin:0;padding:0;\" src=\"https:\/\/assets.feedblitz.com\/i\/comments20.png\"><\/a>&#160;<a title=\"Follow Comments via RSS\" href=\"https:\/\/www.baeldung.com\/java-convert-char-int-array\/feed\"><img decoding=\"async\" height=\"20\" style=\"border:0;margin:0;padding:0;\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>&#160;<\/div>\n\n<h2><b>Commercials Cooperation Advertisements:<\/b><\/h2>\r\n<p><br>(1) IT Teacher IT Freelance<br> <\/p>\r\n<a href=https:\/\/itteacheritfreelance.hk\/wordpress><img src=http:\/\/gamefootballmobileanimeiphone.com\/wp-content\/uploads\/2023\/09\/ITTeacherITFreelance-Website.png alt=IT\u96fb\u8166\u88dc\u7fd2 java\u88dc\u7fd2 \u70ba\u5927\u5bb6\u914d\u5c0d\u96fb\u8166\u88dc\u7fd2,IT freelance, \u79c1\u4eba\u8001\u5e2b, PHP\u88dc\u7fd2,CSS\u88dc\u7fd2,XML,Java\u88dc\u7fd2,MySQL\u88dc\u7fd2,graphic design\u88dc\u7fd2,\u4e2d\u5c0f\u5b78ICT\u88dc\u7fd2,\u4e00\u5c0d\u4e00\u79c1\u4eba\u88dc\u7fd2\u548cFreelance\u81ea\u7531\u5de5\u4f5c\u914d\u5c0d\u3002\/><\/a><p><a href=https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/findteacher>\u7acb\u523b\u8a3b\u518a\u53ca\u5831\u540d\u96fb\u8166\u88dc\u7fd2\u8ab2\u7a0b\u5427! <\/a><br>\r\n\r\n\u7535\u5b50\u8ba1\u7b97\u673a -\u6559\u80b2 -IT \u96fb\u8166\u73ed\u201d ( IT\u96fb\u8166\u88dc\u7fd2 ) \u63d0\u4f9b\u4e00\u500b\u65b9\u4fbf\u7684\u7535\u5b50\u8ba1\u7b97\u673a \u6559\u80b2\u5e73\u53f0, \u70ba\u5927\u5bb6\u914d\u5c0d\u4fe1\u606f\u6280\u672f, \u96fb\u8166 \u8001\u5e2b, IT freelance \u548c programming expert. \u8b93\u5927\u5bb6\u65b9\u4fbf\u5730\u5c31\u80fd\u627e\u5230\u5408\u9069\u7684\u96fb\u8166\u88dc\u7fd2, \u96fb\u8166\u73ed, \u5bb6\u6559, \u79c1\u4eba\u8001\u5e2b.  <br>\r\n\r\nWe are a education and information platform which you can find a IT private tutorial teacher or freelance. <br>\r\n\r\nAlso we provide different information about information technology, Computer, programming, mobile, Android, apple, game, movie, anime, animation\u2026 \r\n<\/p>\n<p><br>(2) ITSec<br> <\/p><a href=https:\/\/itsec.vip><img src=http:\/\/gamefootballmobileanimeiphone.com\/wp-content\/uploads\/2023\/09\/ITSec-Main-Promotion-Image.png alt= https:\/\/itsec.vip\/\r\nSecure Your Computers from Cyber Threats and mitigate risks with professional services to defend Hackers.  \r\nITSec provide IT Security and Compliance Services, including IT Compliance Services, Risk Assessment, IT Audit, Security Assessment and Audit, ISO 27001 Consulting and Certification, GDPR Compliance Services, Privacy Impact Assessment (PIA), Penetration test, Ethical Hacking, Vulnerabilities scan, IT Consulting, Data Privacy Consulting, Data Protection Services, Information Security Consulting, Cyber Security Consulting, Network Security Audit, Security Awareness Training.\/><\/a> \r\n<br><br> \r\n<p><a href=https:\/\/itsec.vip>www.ITSec.vip<\/a> <br> <br> \r\n<p><a href=https:\/\/sraa.com.hk>www.Sraa.com.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/itsec.hk>www.ITSec.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/penetrationtest.hk>www.Penetrationtest.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/itseceu.uk>www.ITSeceu.uk<\/a> <br> <br> \r\nSecure Your Computers from Cyber Threats and mitigate risks with professional services to defend Hackers. <br><br>\r\nITSec provide IT Security and Compliance Services, including IT Compliance Services, Risk Assessment, IT Audit, Security Assessment and Audit, ISO 27001 Consulting and Certification, GDPR Compliance Services, Privacy Impact Assessment (PIA), Penetration test, Ethical Hacking, Vulnerabilities scan, IT Consulting, Data Privacy Consulting, Data Protection Services, Information Security Consulting, Cyber Security Consulting, Network Security Audit, Security Awareness Training. \r\n<br><br>Contact us right away. <br><br>Email (Prefer using email to contact us): <br>SalesExecutive@ITSec.vip<\/p>","protected":false},"excerpt":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2.jpg\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\"><\/p>\n<p>Explore how to convert a char array to an int array in Java.<\/p>\n<div><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/fblike20.png\"><\/a>\u00a0<a title=\"Pin it!\" href=\"https:\/\/feeds.feedblitz.com\/_\/29\/798526544\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2016%2F10%2Fsocial-Java-On-Baeldung-2.jpg\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/pinterest20.png\"><\/a>\u00a0<a title=\"Tweet This\" href=\"https:\/\/feeds.feedblitz.com\/_\/24\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/twitter20.png\"><\/a>\u00a0<a title=\"Subscribe by email\" href=\"https:\/\/feeds.feedblitz.com\/_\/19\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/email20.png\"><\/a>\u00a0<a title=\"Subscribe by RSS\" href=\"https:\/\/feeds.feedblitz.com\/_\/20\/798526544\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/rss20.png\"><\/a>\u00a0<a rel=\"NOFOLLOW\" title=\"View Comments\" href=\"https:\/\/www.baeldung.com\/java-convert-char-int-array#respond\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/comments20.png\"><\/a>\u00a0<a title=\"Follow Comments via RSS\" href=\"https:\/\/www.baeldung.com\/java-convert-char-int-array\/feed\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>\u00a0<\/div>\n","protected":false},"author":293,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-container-style":"default","site-container-layout":"default","site-sidebar-layout":"default","disable-article-header":"default","disable-site-header":"default","disable-site-footer":"default","disable-content-area-spacing":"default","footnotes":""},"categories":[22],"tags":[61,122,127,129,124,128,125,132,131,133,126,130,123,66,94,88,97,56,64,65,60,112,40,75,95,104,33,120,105,101,98,115,30,29,41,86,70,69,68,72,71,26,118,108,87,46,55,48,52,54,51,50,83,62,58,57,109,35,59,63,85,79,82,96,80,27,81,114,44,42,43,45,38,39,110,117,100,111,116,73,89,90,92,91,93,84,78,37,102,34,36,77,67,74,99,113,119,28,121,32,47,49,53,103,31,76],"class_list":["post-17436","post","type-post","status-publish","format-standard","hentry","category-mobile","tag-airpods","tag-anime","tag-anime-characters","tag-anime-cosplay","tag-anime-edits","tag-anime-merchandise","tag-anime-movies","tag-anime-news","tag-anime-recommendations","tag-anime-reviews","tag-anime-series","tag-anime-streaming","tag-animes","tag-app-store","tag-app-store-samsung","tag-appgallery","tag-appgallery-oneplus","tag-apple","tag-apple-music","tag-apple-tv","tag-apple-watch","tag-bbc-sport","tag-best-mobile-games","tag-bixby","tag-bixby-xiaomi","tag-champions-league","tag-cyberpunk","tag-cyberpunk-2077","tag-fantasy-football","tag-fifa","tag-football","tag-formula-1","tag-fortnite","tag-free-fire","tag-free-mobile-games","tag-freebuds-pro","tag-galaxy-a52","tag-galaxy-note-20","tag-galaxy-s21","tag-galaxy-watch-4","tag-galaxy-z-fold-3","tag-game","tag-games","tag-golf","tag-harmonyos","tag-how-to-backup-iphone","tag-how-to-factory-reset-iphone","tag-how-to-reset-iphone","tag-how-to-restore-iphone","tag-how-to-unlock-iphone","tag-how-to-unlock-iphone-5","tag-how-to-unlock-iphone-6","tag-huawei","tag-ios","tag-ipad","tag-iphone","tag-live-soccer","tag-lol","tag-macbook","tag-macos","tag-mate-40-pro","tag-mi-11-lite","tag-mi-home-security-camera-basic-1080p","tag-mi-home-security-camera-basic-1080p-huawei","tag-mi-smart-band-6","tag-minecraft","tag-miui","tag-mlb-scores","tag-mobile-game-design","tag-mobile-game-development","tag-mobile-game-marketing","tag-mobile-game-monetization","tag-mobile-games","tag-mobile-gaming","tag-nba-scores","tag-nba-standings","tag-nfl","tag-nfl-scores","tag-nhl-scores","tag-one-ui","tag-oneplus","tag-oneplus-9-pro","tag-oneplus-buds-pro","tag-oneplus-nord-ce-5g","tag-oxygenos","tag-p40-pro-plus","tag-poco-x3-pro","tag-pokemon","tag-premier-league","tag-pubg","tag-pubg-mobile","tag-redmi-note-10-pro","tag-samsung","tag-samsung-pay","tag-soccer","tag-sports","tag-steam","tag-steeam","tag-top-10-anime","tag-valorant","tag-when-do-the-iphone-7-come-out","tag-when-does-the-iphone-7-come-out","tag-when-is-the-iphone-7-coming-out","tag-world-cup","tag-xbox-series-x","tag-xiaomi"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/17436","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/users\/293"}],"replies":[{"embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/comments?post=17436"}],"version-history":[{"count":1,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/17436\/revisions"}],"predecessor-version":[{"id":17437,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/17436\/revisions\/17437"}],"wp:attachment":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/media?parent=17436"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/categories?post=17436"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/tags?post=17436"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}