最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to use Javascript slice to extract first and last letter of a string? - Stack Overflow

programmeradmin1浏览0评论

How to use JavaScript slice to extract the first and last letter of a string?

Eg: "Hello World"

I need the result as "dH".

Following is my jsfiddle :

/

How to use JavaScript slice to extract the first and last letter of a string?

Eg: "Hello World"

I need the result as "dH".

Following is my jsfiddle :

http://jsfiddle/vSAs8/

Share Improve this question edited Nov 29, 2013 at 14:27 Denys Séguret 383k90 gold badges811 silver badges776 bronze badges asked Nov 13, 2013 at 10:22 Arun BertilArun Bertil 4,6484 gold badges36 silver badges59 bronze badges 2
  • 2 Wouldn't something like str[str.length-1] + str[0] be enough here? – Sirko Commented Nov 13, 2013 at 10:25
  • s.substring(s.length-1)+s.substring(0,1); – Prasanth Commented Nov 13, 2013 at 10:25
Add a ment  | 

4 Answers 4

Reset to default 9

Here's the cleanest solution :

var output = input.slice(-1)+input[0];

If you want more slice, there's also

var output = input.slice(-1)+input.slice(0,1);

And here are alternate fun (and less efficient) solutions :

var output = input.replace(/^(.).*(.)$/,'$2$1');

or

var output = input.match(/^.|.$/g).reverse().join('');

Substr works as well:

alert(test.substr(-1,1) + test.substr(0,1));
a.charAt(a.length-1) + a.charAt(0) 
var str = " Virat Kohali " 
var get_string_label = function(str){ 
  str = str.split(" "); 
  str = str.filter(res=>res.length>0); 
  str = str.map(function(res){ 
    return res[0].toUpperCase(); 
  }); 
  str = str.join(""); 
  return str; 
}; 
console.log(get_string_label(str));

str.split(" "); method splits a String object into an array of strings by separating the string into substrings, where it will find space in string.

then str.filter(res=>res.length>0) will filter out string having zero length (for "virat kohali" string you will get empty sub-string) after that using map function you can fetch your first letter

发布评论

评论列表(0)

  1. 暂无评论