admin管理员组文章数量:1340545
How would I get word # n in a string with javascript. I.e. if I want to get word #3 in "Pumpkin pie and ice cream", I want "and" returned. Is there some little function to do this, or could someone write one? Thanks!
How would I get word # n in a string with javascript. I.e. if I want to get word #3 in "Pumpkin pie and ice cream", I want "and" returned. Is there some little function to do this, or could someone write one? Thanks!
Share Improve this question asked Mar 18, 2011 at 15:04 Leticia MeyerLeticia Meyer 1672 gold badges3 silver badges10 bronze badges5 Answers
Reset to default 11Use the string.split()
method to split the string on the " " character and then return the nth-1 element of the array (this example doesn't include any bounds checking so be careful):
var getNthWord = function(string, n){
var words = string.split(" ");
return words[n-1];
}
I think you can split your string based on space, get the array and then look for value from the index n-1.
var myStr = "Pumpkin pie and ice cream";
var strArr = myStr.split(String.fromCharCode(32)) //ascii code for space is 32.
var requiredWord = strArr[n-1];
var firstWord = strArr[0];
var lastWord = strArr[ strArr.length - 1 ];
Ofcourse error handling is left to you.
Use the split function to get the individual words into a list, then just grab the word that's in index n - 1.
var sentence = "Pumpkin pie and ice cream";
var words[] = sentence.split(" ");
print words[2]; // if you want word 3, since indexes go from 0 to n-1, rather than 1 to n.
A very simple solution would be:
var str = "Pumpkin pie and ice cream"; //your string
var word = 3; //word number
var word = str.split(" ")[word - 1];
However, this does not take consideration of other whitespace(tabs, newlines...) or periods and mas.
Or use the non-word based split: "test,test2 test3".split(/\W/) would yield: [test,test2,test3].
本文标签: Get word n in javascript stringStack Overflow
版权声明:本文标题:Get word #n in javascript string - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743640790a2514675.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论