Title case a sentence

Source: Internet
Author: User

Use the JS operation to ensure that the first letter of each word of the string is capitalized and the remainder lowercase.

function titlecase (str) {  var arr = Str.split ("");   var newarray = [];    for  (var i = 0; i < arr.length; i++) {    var newstr = Arr[i].slice (0,1). toUpperCase () + Arr[i].slice (1). toLowerCase ();    Newarray.push (NEWSTR);  }   return newarray.join ("");} Titlecase ("I ' m a Little tea pot");

is still the practice for split, and the use of slice (),

And then the use of toLowerCase () and toUpperCase () to make sense of the difference between the former and toLocaleLowerCase (), toLocaleUpperCase ()

Title case a sentence

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.