{"id":186,"date":"2020-12-02T05:27:30","date_gmt":"2020-12-02T05:27:30","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=186"},"modified":"2021-05-31T05:35:27","modified_gmt":"2021-05-31T04:35:27","slug":"looping-in-java","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/","title":{"rendered":"Looping in Java"},"content":{"rendered":"\n<p>A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions.<\/p>\n\n\n\n<p>Let&#8217;s take a look 4 types of loops in <a href=\"https:\/\/codeflarelimited.com\/blog\/2020\/11\/28\/throw-and-throws-exception-in-java\/\" target=\"_blank\" rel=\"noreferrer noopener\">Java<\/a>.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>The While Loop<\/strong><\/li><\/ol>\n\n\n\n<p>This repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">\/\/Syntax\nwhile(expression){\n\/\/statements to be executed ...\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">\/\/Print out all numbers from 0 to 100\npublic class Looper{\npublic static void main(String args[]){\nint x = 0;\nwhile(x&lt;=100){\nSystem.out.println(x);\nx++;\nSystem.out.println(\"\\n\"); \/\/new line for vertical output\n}\n}\n}<\/code><\/pre>\n\n\n\n<p>2. <strong>For Loop<\/strong><\/p>\n\n\n\n<p>A for loop is a repetition control structure that allows you to efficiently write a loop that needs to be executed a specific number of times.<\/p>\n\n\n\n<p>A for loop is useful when you know how many times a task is to be repeated.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">\/\/Syntax\nfor(initialization; expression; iteration){\n\/\/Statements to be executed;\n}<\/code><\/pre>\n\n\n\n<p>a. <strong>Initialization<\/strong>: this step is executed first and only once. It allows you to declare and initialize any loop control and it ends with a semi-color.<\/p>\n\n\n\n<p>b. <strong>Expression<\/strong>: next, the expression is executed. If it is true, the body of the loop is executed, else the loop is terminated.<\/p>\n\n\n\n<p>c. <strong>Iteration:<\/strong> if the expression is true, the iteration lets you update any loop control variables. This part can be left blank and without a semi-colon at the end.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">\/\/print all values from 0 to 100\npublic class ForLoop{\npublic static void main(String args[]){\nfor(int i=0; i&lt;=100; i++){\nSystem.out.println(i);\n}\n}\n}<\/code><\/pre>\n\n\n\n<p>3. <strong>Do &#8230; While Loop<\/strong><\/p>\n\n\n\n<p>A do\/while loop is similar to a while loop except that it is guaranteed to execute at least once.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">\/\/Syntax\ndo{\n\/\/statements to be executed\n}while(expression);<\/code><\/pre>\n\n\n\n<p>The statement executes once before the expression is tested. If the expression is true, the control jumps back up to the <em><strong>do<\/strong><\/em> statement, and the statements in the loop execute again. The process repeats itself until the boolean expression is false.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">\/\/print all numbers from 1 to 100\npublic class DoWhile{\npublic static void main(String args[]){\nint x = 0;\ndo{\nSystem.out.println(x);\nx++;\n}while(x&lt;=100);\n}\n}<\/code><\/pre>\n\n\n\n<p>4. <strong>Enhanced For Loop<\/strong><\/p>\n\n\n\n<p><em><strong>Enhanced for loop<\/strong><\/em> is used to traverse through a collection of elements, including <a href=\"https:\/\/codeflarelimited.com\/blog\/2020\/11\/30\/working-with-arrays-in-java\/\" target=\"_blank\" rel=\"noreferrer noopener\">arrays<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">\/\/Syntax\nfor(declaration: expression){\n\/\/statements\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">public class EnForLoop{\npublic static void main(String args[]){\nint [] numbers = {10, 20, 30, 40, 50};\nfor(int x : numbers){\nSystem.out.println(x); \/\/10, 20, 30, 40, 50\n}\n}\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>A loop statement allows the programmer to execute a statement or group of statements multiple number of times,<\/p>\n","protected":false},"author":1,"featured_media":187,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[25],"tags":[50,53,52,27,49,51],"class_list":["post-186","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-java","tag-do-while-loop","tag-enhanced-for-loop","tag-for-loop","tag-java","tag-loop","tag-while-loop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Looping in Java<\/title>\n<meta name=\"description\" content=\"A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Looping in Java\" \/>\n<meta property=\"og:description\" content=\"A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-02T05:27:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-31T04:35:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/loop.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Looping in Java\",\"datePublished\":\"2020-12-02T05:27:30+00:00\",\"dateModified\":\"2021-05-31T04:35:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/\"},\"wordCount\":265,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/loop.jpg\",\"keywords\":[\"do while loop\",\"enhanced for loop\",\"for loop\",\"java\",\"loop\",\"while loop\"],\"articleSection\":[\"java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/\",\"name\":\"Looping in Java\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/loop.jpg\",\"datePublished\":\"2020-12-02T05:27:30+00:00\",\"dateModified\":\"2021-05-31T04:35:27+00:00\",\"description\":\"A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/loop.jpg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/loop.jpg\",\"width\":1280,\"height\":720,\"caption\":\"a looping spiral\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/looping-in-java\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"java\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/java\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Looping in Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Looping in Java","description":"A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions","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:\/\/codeflarelimited.com\/blog\/looping-in-java\/","og_locale":"en_US","og_type":"article","og_title":"Looping in Java","og_description":"A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions","og_url":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2020-12-02T05:27:30+00:00","article_modified_time":"2021-05-31T04:35:27+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/loop.jpg","type":"image\/jpeg"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Looping in Java","datePublished":"2020-12-02T05:27:30+00:00","dateModified":"2021-05-31T04:35:27+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/"},"wordCount":265,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/loop.jpg","keywords":["do while loop","enhanced for loop","for loop","java","loop","while loop"],"articleSection":["java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/","url":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/","name":"Looping in Java","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/loop.jpg","datePublished":"2020-12-02T05:27:30+00:00","dateModified":"2021-05-31T04:35:27+00:00","description":"A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/looping-in-java\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/loop.jpg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/loop.jpg","width":1280,"height":720,"caption":"a looping spiral"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/looping-in-java\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"java","item":"https:\/\/codeflarelimited.com\/blog\/java\/"},{"@type":"ListItem","position":3,"name":"Looping in Java"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/loop.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/186","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=186"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/186\/revisions"}],"predecessor-version":[{"id":658,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/186\/revisions\/658"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/187"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=186"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=186"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=186"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}