为了账号安全,请及时绑定邮箱和手机立即绑定

如何从字符串中删除 X 个大写字母?

如何从字符串中删除 X 个大写字母?

C#
RISEBY 2022-01-16 20:06:40
我想从 a中删除X多个大写字母string。例如,如果我有字符串:string Line1 = "NICEWEather";和string Line2 = "HAPpyhour";我将如何创建一个提取 2 组大写字母的函数?
查看完整描述

2 回答

?
杨__羊羊

TA贡献1943条经验 获得超7个赞

尝试对 Unicode大写字母使用正则表达式\p{Lu}


  using System.Text.RegularExpressions;


  ...


  // Let's remove 2 or more consequent capital letters

  int X = 2;


  // English and Russian

  string source = "NICEWEather - ХОРОшая ПОГОда - Keep It (HAPpyhour)";


  // ather - шая да - Keep It (pyhour)

  string result = Regex.Replace(source, @"\p{Lu}{" + X.ToString() + ",}", "");

这里我们使用\p{Lu}{2,}模式:大写字母出现X(2在上面的代码中)或更多次。


查看完整回答
反对 回复 2022-01-16
?
慕码人2483693

TA贡献1860条经验 获得超9个赞

从字符串中删除大写字母


    string str = " NICEWEather";

    Regex pattern = new Regex("[^a-z]");

    string result = pattern.Replace(str, "");

    Console.WriteLine(result );

输出: ather


如果按顺序多次出现,则删除大写字母,然后试试这个


string str = " NICEWEather";

Regex pattern = new Regex(@"\p{Lu}{2,}");

string output = pattern.Replace(str, "");

Console.WriteLine(output);


查看完整回答
反对 回复 2022-01-16
  • 2 回答
  • 0 关注
  • 186 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信