C#将字符串单词首字母转大写
使用System.Globalization
命名空间下的TextInfo
类的ToTitleCase
方法将字符串中的单词首字母转换为大写。
using System;
using System.Globalization;
class Program
{
static void Main()
{
string input = "hello world";
string result = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(input.ToLower());
Console.WriteLine(result); // 输出: Hello World
}
}