输入一个字符串,删除其中所有的大写字母,输出删除后的字符,用C#写
时间: 2024-11-22 20:37:04 浏览: 24
在C#中,你可以使用`ToLower()`方法将字符串中的所有大写字母转换为小写,然后再复制回一个新的字符串以创建一个新版本的字符串,其中不含大写字母。下面是一个简单的示例:
```csharp
using System;
class Program
{
static void Main()
{
string input = "Hello World! This is a Test.";
string output = RemoveUppercase(input);
Console.WriteLine(output); // 输出 hello world! this is a test.
}
static string RemoveUppercase(string str)
{
return new string(str.ToLowerInvariant().Where(c => char.IsLower(c)).ToArray());
}
}
```
上述代码首先将输入字符串转为小写,然后使用`Where()`函数过滤出非大写的字符,并通过`ToArray()`将它们转换回字符数组,最后用新的字符数组创建一个新的字符串。
相关问题
用C#输人一个字符串,将其中小写字母改成大写字母,大写字母改成小写字母,其余字符不变,输出该字符串。
好的,这里是用C#实现该功能的代码:
```csharp
using System;
namespace StringConversion
{
class Program
{
static void Main(string[] args)
{
Console.Write("请输入字符串:");
string s = Console.ReadLine();
string result = "";
foreach (char c in s)
{
if (char.IsLower(c)) // 如果是小写字母
{
result += char.ToUpper(c); // 转换成大写字母
}
else if (char.IsUpper(c)) // 如果是大写字母
{
result += char.ToLower(c); // 转换成小写字母
}
else
{
result += c; // 其他字符不变
}
}
Console.WriteLine("转换结果:" + result);
}
}
}
```
你可以将以上代码复制到Visual Studio中创建一个C#控制台应用程序,然后运行该程序,在控制台中输入你想要转换的字符串后,即可得到转换后的结果。
我还想用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();
}
}
}
```
运行程序后,会输出原字符串,再分别输出大写字母和小写字母。
阅读全文