我正在尝试使用原型方法编写可以通过字符串实现的函数来大写每个单词的每个首字母。我想称这个函数为,
var str = "Example of a string";
str.toJadenCase();
这是我想写的功能:
String.prototype.toJadenCase = function () {
//split the statement into each word
if (String.prototype.length !== 0)
{
var eachWord = String.prototype.split(" ");
var n = eachWord.length;
if(n !== 0)
{
//loop through the array of words
for(var i = 0; i < eachWord.length; i++){
//for each loop, split the word into individual characters
var charArray = eachWord[i].split("");
//capitalise the first element of character array
charArray[0] = charArray[0].toUpperCase();
//join all elements in character array to string
eachWord[i] = charArray.join("");
}
//join all the words to form the statement
String.prototype = eachWord.join(" ");
return String.prototype;
}
}
};
我之前用这种方式写过:
var capitaliseInitial = function(sampleText){
var textString = sampleText;
//split the statement into each word
var eachWord = textString.split(" ");
//loop through the array of words
for(var i = 0; i < eachWord.length; i++){
//for each loop, split the word into individual characters
var charArray = eachWord[i].split("");
//capitalise the first element of character array
charArray[0] = charArray[0].toUpperCase();
//join all elements in character array to string
eachWord[i] = charArray.join("");
}
//join all the words to form the statement
textString = eachWord.join(" ");
return textString;
}
答案 0 :(得分:5)
我想将此功能称为
var str = "Example of a string"; str.toJadenCase();
你不能,字符串是不可变的。你必须这样称呼它:
str = str.toJadenCase();
在您的功能中,您错误地使用了String.prototype
。 String.prototype
是包含各种String
特定方法的对象。它被指定为所有字符串的基础原型。
您使用String.prototype
的位置,您应该使用this
,而不是尝试分配给它(this = ...
无效),返回结果。
做你正在做的事的简单方法是:
将字符串拆分为一个单词数组,就像你有
循环遍历该数组,或者通过+=
构建一个带有大写单词的新字符串,或者使用大写单词构建一个新数组,然后在末尾执行Array#join
来放置它回到一起。
返回您构建的字符串
这样的事情:
String.prototype.toJadenCase = function() {
var result = this;
//split the statement into each word
if (this.length !== 0) {
result = this.split(" ").map(function(word) {
return word.substring(0, 1).toUpperCase() + word.substring(1);
}).join(" ");
}
return result;
};
snippet.log("this is a test".toJadenCase());
snippet.log("oneword".toJadenCase());
snippet.log("blank: " + ("".toJadenCase()));
<!-- Script provides the `snippet` object, see http://meta.stackexchange.com/a/242144/134069 -->
<script src="http://tjcrowder.github.io/simple-snippets-console/snippet.js"></script>
注意我已经取消了检查“length
”字词数组是否不是0
:如果 不是0
你已经预先检查了长度。
答案 1 :(得分:0)
使用RegExp和php命名
str.ucwords()
compile 'com.android.support:multidex:1.0.1'
答案 2 :(得分:0)
这就是我的做法。
将字符串拆分为一个单词数组,就像你一样 循环遍历该数组,或者通过+ =构建一个带有大写单词的新字符串,或者使用大写单词构建一个新数组,然后在最后执行Array#join将它重新组合在一起。 返回你构建的字符串
String.prototype.toJadenCase = function () { return this.split(" ").map(function(word){ return word.charAt(0).toUpperCase() + word.slice(1); }).join(" "); }
答案 3 :(得分:0)
这看起来像Code Wars Katas之一 - 这是我的解决方案 -
String.prototype.toJadenCase = function () {
// assign 'this' keyword to a variable and split String into an array
var result = this.split(" ");
/* loop through the array changing first character of each item to
uppercase & adding it to the remaining letters in each item */
for(i = 0; i < result.length; i++) {
result[i] = result[i].charAt(0).toUpperCase() + result[i].substring(1);
}
//finally return items joined back together in a string
return result.join(' ');
};