{"id":635,"date":"2012-09-08T19:59:49","date_gmt":"2012-09-08T19:59:49","guid":{"rendered":"http:\/\/faq.pctrickers.com\/?p=635"},"modified":"2023-03-27T19:22:40","modified_gmt":"2023-03-27T19:22:40","slug":"get-last-10-characters-from-a-string-java-script","status":"publish","type":"post","link":"https:\/\/webexplorar.com\/get-last-10-characters-from-a-string-java-script\/","title":{"rendered":"Get last 10 characters from a string using Java script"},"content":{"rendered":"<p>If you want to get last 10 or 5 or nth <strong>characters <\/strong>from a string using <em>java script<\/em>, this can be done very easily.substr function can be use to this.<!--more--><br \/>\nExample:<br \/>\nMy string is &#8220;http:\/\/www.mysite.com\/blog\/2012\/09\/&#8221;<br \/>\nI want to get 2012\/09.This can be get like this.<\/p>\n<pre class=\"lang:javascript decode:true \">\nvar myString  = 'http:\/\/www.mysite.com\/blog\/2012\/09\/';\nvar newString = myString.substr(myString.length - 8);\nalert(newString); \/\/  2012\/09\/\n<\/pre>\n<p>Further you want to remove these <strong><a href=\"\/java-script-remove-backslashes-and-forwardslashes-from-a-string\/\" title=\"Java script remove backslashes and forwardslashes from a string\" target=\"_blank\" rel=\"noopener noreferrer\">Forwardslashes(\/)<\/a><\/strong> this can be done like this.<\/p>\n<pre class=\"lang:javascript decode:true \">\nvar myString  = 'http:\/\/www.mysite.com\/blog\/2012\/09\/';\nmyString = myString.replace(\/\\\/$\/,'');\nalert(myString);\n<\/pre>\n<p>More info <a href=\"\/java-script-remove-backslashes-and-forwardslashes-from-a-string\/\" title=\"Java script remove backslashes and forwardslashes from a string\" target=\"_blank\" rel=\"noopener noreferrer\">Java script remove backslashes and forwardslashes from a string<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you want to get last 10 or 5 or nth characters from a string using java script, this can be done very easily.substr function can be use to this.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,1],"tags":[129,128],"class_list":["post-635","post","type-post","status-publish","format-standard","hentry","category-javascript-jquery","category-recent-posts","tag-javascript","tag-jquery","post--single"],"aioseo_notices":[],"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/posts\/635","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/comments?post=635"}],"version-history":[{"count":1,"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/posts\/635\/revisions"}],"predecessor-version":[{"id":3853,"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/posts\/635\/revisions\/3853"}],"wp:attachment":[{"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/media?parent=635"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/categories?post=635"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webexplorar.com\/wp-json\/wp\/v2\/tags?post=635"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}