我还想用c#实现设定一个有大小写字母的字符串,先将字符串的大写字母输出,再将字符串的小写字母输出。
时间: 2024-03-14 11:48:27 浏览: 74
C#找出字符串中第一个字母并大写的方法
好的,以下是用C#实现设定一个有大小写字母的字符串,先将字符串的大写字母输出,再将字符串的小写字母输出的代码:
```csharp
using System;
namespace StringToUpperLower
{
class Program
{
static void Main(string[] args)
{
string str = "HeLLoWoRlD";//设定一个有大小写字母的字符串
Console.WriteLine("原字符串:" + str);
Console.Write("大写字母:");
for (int i = 0; i < str.Length; i++)
{
if (Char.IsUpper(str[i]))//判断字符是否为大写字母
{
Console.Write(str[i] + " ");//输出大写字母
}
}
Console.Write("\n小写字母:");
for (int i = 0; i < str.Length; i++)
{
if (Char.IsLower(str[i]))//判断字符是否为小写字母
{
Console.Write(str[i] + " ");//输出小写字母
}
}
Console.ReadKey();
}
}
}
```
运行程序后,会输出原字符串,再分别输出大写字母和小写字母。
阅读全文