Capitalize the first letter of sentense in JavaScript/Jquery
This question already has an answer here:
You don't need jQuery for this. You can use Javascript string
and array
functions.
.
, to separate different sentences .
var str = 'this is a test. this is one more test. and this also new test.';
var newStr = str.split('.').map(function(el) {
el = el.trim();
return el.substr(0, 1).toUpperCase() + el.substr(1);
}).join('. ');
alert(newStr.trim());
链接地址: http://www.djcxy.com/p/17864.html
上一篇: 在json发送时大写首字母的字符串