即時嘗試將字符串的第一個字母更新爲大寫,請注意,我只允許使用.substr和.length轉換它。沒有正則表達式或任何東西。使用.substr將第一個字母更新爲大寫
這是正確的方法/語法來做到這一點?
e1 = prompt("Please enter your first name", "andrew");
e1.toUpperCase(e1.substr(e1.length - e1.length,0));
即時嘗試將字符串的第一個字母更新爲大寫,請注意,我只允許使用.substr和.length轉換它。沒有正則表達式或任何東西。使用.substr將第一個字母更新爲大寫
這是正確的方法/語法來做到這一點?
e1 = prompt("Please enter your first name", "andrew");
e1.toUpperCase(e1.substr(e1.length - e1.length,0));
正則表達式的一切!
e1 = prompt("Please enter your first name", "andrew");
e1.replace(/^\w/, function(t){ return t.toUpperCase() })
不允許使用正則表達式,我只能使用substr /和.length 我的班級和作業限制的一部分 – 2015-03-18 21:20:12
@AndrewBarsoom'e1 = e1.substr(0,1).toUpperCase()+ e1。 SUBSTR(1);' – 2015-03-18 21:23:44
你真的可以使用谷歌這種東西。這是相當普遍的 – 2015-03-18 21:16:24