{"id":7565,"date":"2022-04-09T12:33:08","date_gmt":"2022-04-09T07:03:08","guid":{"rendered":"https:\/\/www.goseeko.com\/blog\/?p=7565"},"modified":"2022-04-09T12:33:08","modified_gmt":"2022-04-09T07:03:08","slug":"what-is-a-java-string%ef%bf%bc","status":"publish","type":"post","link":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/","title":{"rendered":"What is a Java String?\ufffc"},"content":{"rendered":"\n<p>A <a href=\"https:\/\/www.w3schools.com\/java\/java_strings.asp\" target=\"_blank\" rel=\"noreferrer noopener\">Java string<\/a> is a java.lang object that contains a collection of characters. Strings are created and manipulated using Java&#8217;s string class. The value of a string cannot be changed once it has been created.<\/p>\n\n\n\n<p>A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Creating Java Strings<\/strong><\/h2>\n\n\n\n<p>The simplest approach to make a string is to type.<\/p>\n\n\n\n<p>String greeting = &#8220;Hello Glossaread&#8221;;<\/p>\n\n\n\n<p>When the compiler encounters a string literal in your code, it creates a String object with the value &#8220;Hello Glossaread!&#8221;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>String constructor<\/strong><\/h2>\n\n\n\n<p>\u200b\u200bIn Java APIs, the String class provides a variety of constructors.<\/p>\n\n\n\n<p>The constructors of the String class that are most typically uses, as follows:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>String()<\/li><li>String(String str)<\/li><li>String(char chars[ ])<\/li><li>String(char chars[ ], int startIndex, int count)<\/li><li>String(byte byteArr[ ])<\/li><li>String(byte byteArr[ ], int startIndex, int count)<\/li><\/ul>\n\n\n\n<p><strong>String()<\/strong> &#8211; We&#8217;ll use the default constructor to make an empty String. The following is the usual syntax for creating an empty string in a Java program:<\/p>\n\n\n\n<p>String s = new String();<\/p>\n\n\n\n<p>It will generate a string object with no value in the memory region.<\/p>\n\n\n\n<p><strong>String(String str)<\/strong> &#8211; In the heap region, it will build a string object and store the specified value in it. The following is the standard syntax for creating a string object with a provided string str:<\/p>\n\n\n\n<p>String st = new String(String str);<\/p>\n\n\n\n<p><strong>String(char chars[ ])<\/strong> &#8211; The array of characters is stores in a string object create by this constructor. The following is the basic syntax for creating a string object with a provided array of characters:<\/p>\n\n\n\n<p>String str = new String(char char[])<\/p>\n\n\n\n<p><strong>String(char chars[ ], int startIndex, int count)<\/strong> &#8211; With a subrange of a character array, this constructor builds and initializes a string object.<\/p>\n\n\n\n<p>The startIndex and count arguments specify the index at which the subrange begins and the number of characters to be copied, respectively.<\/p>\n\n\n\n<p>The following is the standard syntax for creating a string object with the specified subrange of a character array:<\/p>\n\n\n\n<p>String str = new String(char chars[ ], int startIndex, int count);<\/p>\n\n\n\n<p><strong>String(byte byteArr[ ])<\/strong> &#8211; This constructor creates a new string object by decoding the given array of bytes (i.e., ASCII values into characters) using the system&#8217;s default character set.<\/p>\n\n\n\n<p><strong>String(byte byteArr[ ], int startIndex, int count)<\/strong> &#8211; The ASCII values are decoded using the system&#8217;s default character set, and a new string object is created.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>String Length&nbsp;<\/strong><\/h2>\n\n\n\n<p>This method returns the string&#8217;s length. The length of the string is equal to the number of 16-bit Unicode characters.<\/p>\n\n\n\n<p><strong>Syntax&nbsp;<\/strong><\/p>\n\n\n\n<p>public int length()<\/p>\n\n\n\n<p><strong>Example&nbsp;<\/strong><\/p>\n\n\n\n<p>\u200b\u200bpublic class Stringoperation5&nbsp;&nbsp;<\/p>\n\n\n\n<p>{&nbsp;&nbsp;<\/p>\n\n\n\n<p>public static void main(String ar[])&nbsp;&nbsp;<\/p>\n\n\n\n<p>{&nbsp;&nbsp;<\/p>\n\n\n\n<p>String s=&#8221;Sachin&#8221;;&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p>System.out.println(s.length());\/\/6&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p>}&nbsp;&nbsp;<\/p>\n\n\n\n<p>}&nbsp;&nbsp;<\/p>\n\n\n\n<p>Output&nbsp;<\/p>\n\n\n\n<p>6<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Interested in learning about similar topics? Here are a few hand-picked blogs for you!<\/strong><br><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-java-database-connectivity\/\" target=\"_blank\" rel=\"noreferrer noopener\">What is JDBC connectivity?<\/a><\/li><li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-programming\" target=\"_blank\" rel=\"noreferrer noopener\">Describe programming?<\/a><\/li><li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-object-oriented-programming\" target=\"_blank\" rel=\"noreferrer noopener\">What is object oriented programming?<\/a><\/li><li><a href=\"https:\/\/www.goseeko.com\/blog\/what-is-recursion\" target=\"_blank\" rel=\"noreferrer noopener\">Explain Recursion?<\/a><\/li><\/ol>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.<\/p>\n","protected":false},"author":28,"featured_media":6405,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[36],"tags":[],"class_list":["post-7565","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-computer-science-software-engineering-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is a Java String?\ufffc - Goseeko blog<\/title>\n<meta name=\"description\" content=\"A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string\ufffc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is a Java String?\ufffc - Goseeko blog\" \/>\n<meta property=\"og:description\" content=\"A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string\ufffc\/\" \/>\n<meta property=\"og:site_name\" content=\"Goseeko blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/goseeko\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-09T07:03:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"533\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Gunjan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@goseeko\" \/>\n<meta name=\"twitter:site\" content=\"@goseeko\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gunjan\" \/>\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\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/\"},\"author\":{\"name\":\"Gunjan\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\"},\"headline\":\"What is a Java String?\ufffc\",\"datePublished\":\"2022-04-09T07:03:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/\"},\"wordCount\":508,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"articleSection\":[\"Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/\",\"url\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/\",\"name\":\"What is a Java String?\ufffc - Goseeko blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"datePublished\":\"2022-04-09T07:03:08+00:00\",\"description\":\"A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1\",\"width\":800,\"height\":533},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.goseeko.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is a Java String?\ufffc\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#website\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"name\":\"Goseeko blog\",\"description\":\"Learning beyond college, Students platform for life skills.\",\"publisher\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#organization\",\"name\":\"Goseeko.com\",\"url\":\"https:\/\/www.goseeko.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"contentUrl\":\"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1\",\"width\":2471,\"height\":2471,\"caption\":\"Goseeko.com\"},\"image\":{\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/goseeko\",\"https:\/\/x.com\/goseeko\",\"https:\/\/www.instagram.com\/goseeko\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c\",\"name\":\"Gunjan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g\",\"caption\":\"Gunjan\"},\"url\":\"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is a Java String?\ufffc - Goseeko blog","description":"A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.","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:\/\/www.goseeko.com\/blog\/what-is-a-java-string\ufffc\/","og_locale":"en_US","og_type":"article","og_title":"What is a Java String?\ufffc - Goseeko blog","og_description":"A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.","og_url":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string\ufffc\/","og_site_name":"Goseeko blog","article_publisher":"https:\/\/www.facebook.com\/goseeko","article_published_time":"2022-04-09T07:03:08+00:00","og_image":[{"width":800,"height":533,"url":"https:\/\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg","type":"image\/jpeg"}],"author":"Gunjan","twitter_card":"summary_large_image","twitter_creator":"@goseeko","twitter_site":"@goseeko","twitter_misc":{"Written by":"Gunjan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#article","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/"},"author":{"name":"Gunjan","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c"},"headline":"What is a Java String?\ufffc","datePublished":"2022-04-09T07:03:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/"},"wordCount":508,"commentCount":0,"publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","articleSection":["Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/","url":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/","name":"What is a Java String?\ufffc - Goseeko blog","isPartOf":{"@id":"https:\/\/www.goseeko.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","datePublished":"2022-04-09T07:03:08+00:00","description":"A string in Java is an object that represents a collection of char values. A character array works in the same way as a Java string.","breadcrumb":{"@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#primaryimage","url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","width":800,"height":533},{"@type":"BreadcrumbList","@id":"https:\/\/www.goseeko.com\/blog\/what-is-a-java-string%ef%bf%bc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.goseeko.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is a Java String?\ufffc"}]},{"@type":"WebSite","@id":"https:\/\/www.goseeko.com\/blog\/#website","url":"https:\/\/www.goseeko.com\/blog\/","name":"Goseeko blog","description":"Learning beyond college, Students platform for life skills.","publisher":{"@id":"https:\/\/www.goseeko.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.goseeko.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.goseeko.com\/blog\/#organization","name":"Goseeko.com","url":"https:\/\/www.goseeko.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","contentUrl":"https:\/\/i1.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/GoSeeko_Stacked-logo-01.png?fit=2471%2C2471&ssl=1","width":2471,"height":2471,"caption":"Goseeko.com"},"image":{"@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/goseeko","https:\/\/x.com\/goseeko","https:\/\/www.instagram.com\/goseeko\/"]},{"@type":"Person","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/843a7ac71fc4ae8c177dbb7820f2dc9c","name":"Gunjan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goseeko.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/603118e8b67d49e1d7409d0214533c962209d94d08d298ce69d8e191ed573faa?s=96&d=mm&r=g","caption":"Gunjan"},"url":"https:\/\/www.goseeko.com\/blog\/author\/gunjangoseeko\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.goseeko.com\/blog\/wp-content\/uploads\/2021\/09\/photo-1488590528505-98d2b5aba04b.jpeg?fit=800%2C533&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7565","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/comments?post=7565"}],"version-history":[{"count":2,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7565\/revisions"}],"predecessor-version":[{"id":7573,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/posts\/7565\/revisions\/7573"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media\/6405"}],"wp:attachment":[{"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/media?parent=7565"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/categories?post=7565"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.goseeko.com\/blog\/wp-json\/wp\/v2\/tags?post=7565"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}