How do I strip non-alphanumeric characters (including spaces) from a string?

前端 未结 8 2320
借酒劲吻你
借酒劲吻你 2020-12-14 00:10

How do I strip non alphanumeric characters from a string and loose spaces in C# with Replace?

I want to keep a-z, A-Z, 0-9 and nothing more (not even \" \" spaces).<

8条回答
  •  轮回少年
    2020-12-14 00:57

    The mistake made above was using Replace incorrectly (it doesn't take regex, thanks CodeInChaos).

    The following code should do what was specified:

    Regex reg = new Regex(@"[^\p{L}\p{N}]+");//Thanks to Tim Pietzcker for regex
    string regexed = reg.Replace("Hello there(hello#)", "");
    

    This gives:

    regexed = "Hellotherehello"
    

提交回复
热议问题