This article mainly describes how to capitalize the first letter of each word in a string, and you need a friend to refer to theIn a string, each word is separated by a space and the number of spaces is not limited to the following code: function
In Python, there is code that can implement this function directly
str2 = "Hello nice to meet
Print (Str2.title ())There are a couple of similar features
Convert #将字符串中的大写转化成小写 lowercase to uppercase
print (Str2.swapcase ())
#就第一个首字母大写 Other
1 str = input ('input a string ' need to change:')23 New _list = Str.split (")4 for in new_list: 5 print(I.capitalize (), end=" )When I learned the string split usage today, I suddenly thought of the front str.capitalize () capitalize the
In a string, each word is separated by a space and the number of spaces is not limited
Copy Code code as follows:
Function capitalize (Sting) {
var words = String.Split ("");
for (var i = 0; i Words[i] = Words[i].charat (0). toUpperCase (
There are other (hidden) requirements (otherwise, you cannot pass the test):1 If the first letter is capitalized, it does not change. 2. Not the same as the English alphabete.g.Input:hello world! This is _LJJ speaking! Output:hello world! This is
Capitalize the initial letterTime limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others)Total submission (s): 32066 Accepted Submission (s): 17876problem DescriptionEnter an English sentence and change the first letter of each
Ucwords ();
Strtoupper ();
Ucfirst ()
Strtolower ();
PHP ucwords () functionPHP String functionInstanceConvert the first character of each word to uppercase:Running an instanceDefinition and usageThe Ucwords () function converts the
Title Description:
For all words in a string, if the first letter of the word is not an uppercase letter, the first letter of the word becomes uppercase.In the string, the words are separated by a white space character, including a
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.