Stripping out non-numeric characters in string

后端 未结 11 587
南旧
南旧 2021-01-30 09:46

Hey Im looking to strip out non-numeric characters in a string in ASP.NET C#

So i.e 40,595 p.a.

would end up with 40595

Thanks

11条回答
  •  说谎
    说谎 (楼主)
    2021-01-30 10:41

    There are many ways, but this should do (don't know how it performs with really large strings though):

    private static string GetNumbers(string input)
    {
        return new string(input.Where(c => char.IsDigit(c)).ToArray());
    }
    

提交回复
热议问题