在asx .cs中转换为大写
本文关键字:转换 asx cs | 更新日期: 2023-09-27 18:01:59
我目前有以下代码,将姓氏的第一个字母转换为大写;
static string UppercaseFirst(string s)
{
if (string.IsNullOrEmpty(s))
{
return string.Empty;
}
char[] a = s.ToCharArray();
a[0] = char.ToUpper(a[0]);
return new string(a);
}
我现在想编辑它,使它改变所有的字母在姓氏大写。应该是一个简单的,但我的asx。cs知识是可怕的!:)由于
尝试return s.ToUpper();
或ToUpperInvariant()
等的变体
根据您的要求,有许多方法可以做到"文化安全"。
try this
static string UppercaseFirst(string s)
{
return s.ToUpper();
}