C#、ASP.NET如何设置string字符串的首字母为大写格式
作者: 张国军_Suger
开发工具与关键技术:Visual Studio 2015、C#、.NET、winfrom
由于需求需要我们达到一个怎样的目的呢?那么我们就应该想着如何去做,比如说,在有些时候,客户的一些需求,需要我们去做一些显示,比如需要我们对某些字符串的首字母进行大写格式,那么我们该如何做呢,在此也给小伙伴们讲解一下,希望能帮到小伙伴。。
第一种方法:不用引用,直接使用
String uppercaseStr = System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase("school");
Console.WriteLine(uppercaseStr);
Console.Read();
第二种方法:添加引用,再来使用
//添加引用
using System.Globalization;
using System.Threading;
//实现代码
CultureInfo cultureInfo = Thread.CurrentThread.CurrentCulture;
TextInfo textInfo = cultureInfo.TextInfo;
String uppercaseStr = textInfo.ToTitleCase("school");
Console.WriteLine(uppercaseStr);
Console.Read();
第三种方法:转换使用
//原字符串
String oldStr = "school";
//取第一个字符串,同时转换为大写
String firstStr = oldStr.Substring(0, 1).ToUpper();
//进行拼接最终的字符
String uppercaseStr = firstStr + oldStr.Substring(1);
Console.WriteLine(uppercaseWords);
Console.Read();
综上所述得,我们就如何使用C#、ASP.NET如何设置string字符串的首字母为大写格式的功能代码了。