为了账号安全,请及时绑定邮箱和手机立即绑定

如何将第一个单词第一个字符转换为大写字母?

如何将第一个单词第一个字符转换为大写字母?

动漫人物 2019-04-16 15:15:36
我想要这个:示例:stackoverflow很有帮助。=> Stackoverflow很有帮助。作为示例显示想要将我的第一个单词第一个字符转换为大写字母。我尝试下面给出的代码不起作用,不理解我做错了请帮忙。<textarea autocomplete="off" cols="30" id="TextInput" name="message" oninput="myFunction()" rows="10" style="width: 100%;"></textarea><input id="FistWordFirstCharcterCapital" onclick="FistWordFirstCharcterCapital()" style="color: black;" type="button" value="First word first character capital!" /> </br></br><script>  function FistWordFirstCharcterCapital() {    var x = document.getElementById("TextInput").value.replace(string[0], string[0].toUpperCase());    document.getElementById("TextInput").value = x;  }</script>
查看完整描述

5 回答

?
Qyouu

TA贡献1786条经验 获得超11个赞

将它视为类似数组的对象来获取第一个字符,将其大写,然后concat将其视为字符串的其余部分:


const str = "hello World!";

const upper = ([c, ...r]) => c.toUpperCase().concat(...r);

console.log(upper(str));


查看完整回答
反对 回复 2019-05-17
?
米琪卡哇伊

TA贡献1998条经验 获得超6个赞

你可以charAt用来获得第一个字母:


const string = "stackoverflow is helpful."

const capitalizedString = string.charAt(0).toUpperCase() + string.slice(1)


console.log(capitalizedString)


查看完整回答
反对 回复 2019-05-17
?
慕工程0101907

TA贡献1887条经验 获得超5个赞

你不想使用替换,也不想使用string[0]。相反,使用下面的小方法


const s = 'foo bar baz';


function ucFirst(str) {

  return str.substr(0, 1).toUpperCase() + str.substr(1);

}


console.log(ucFirst(s));


查看完整回答
反对 回复 2019-05-17
?
心有法竹

TA贡献1866条经验 获得超5个赞

既然你似乎想知道这里有一个详细的例子:


function FistWordFirstCharcterCapital() {

  let text =  document.getElementById("TextInput").value;

  let firstSpaceIndex = text.indexOf(" ")!=-1 ? text.indexOf(" ")+1:text.length;

  let firstWord = text.substr(0, firstSpaceIndex);

  let firstWordUpper = firstWord.charAt(0).toUpperCase() + firstWord.slice(1)

  document.getElementById("TextInput").value = firstWordUpper + text.substr(firstSpaceIndex);;

}

<textarea autocomplete="off" cols="30" id="TextInput" name="message" rows="10" style="width: 100%;">

</textarea>


<input id="FistWordFirstCharcterCapital" onclick="FistWordFirstCharcterCapital()" style="color: black;" type="button" value="First word first character capital!" />


查看完整回答
反对 回复 2019-05-17
  • 5 回答
  • 0 关注
  • 757 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信