如何使用 LINQ 从字符串中删除字符

发布于 2024-10-06 09:43:27 字数 165 浏览 5 评论 0原文

我有一个像

XQ74MNT8244A

这样的字符串,我需要从字符串中删除所有 char

所以输出将类似于

748244

如何做到这一点? 请帮我做到这一点

I'm having a String like

XQ74MNT8244A

i nee to remove all the char from the string.

so the output will be like

748244

How to do this?
Please help me to do this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

吲‖鸣 2024-10-13 09:43:27
new string("XQ74MNT8244A".Where(char.IsDigit).ToArray()) == "748244"
new string("XQ74MNT8244A".Where(char.IsDigit).ToArray()) == "748244"
风流物 2024-10-13 09:43:27

两个选择。在 .Net 4 上使用 Linq(在 3.5 上是类似的 - 它没有那么多方法的重载):

string s1 = String.Concat(str.Where(Char.IsDigit));

或者,使用正则表达式:

string s2 = Regex.Replace(str, @"\D+", "");

我应该添加 IsDigit\ D 支持 Unicode,因此除了 0-9 之外它还接受相当多的数字,例如 "542abc٣٤"
您可以轻松地将它们调整为 09 之间的检查,或 [^0-9]+

Two options. Using Linq on .Net 4 (on 3.5 it is similar - it doesn't have that many overloads of all methods):

string s1 = String.Concat(str.Where(Char.IsDigit));

Or, using a regular expression:

string s2 = Regex.Replace(str, @"\D+", "");

I should add that IsDigit and \D are Unicode-aware, so it accepts quite a few digits besides 0-9, for example "542abc٣٤".
You can easily adapt them to a check between 0 and 9, or to [^0-9]+.

那伤。 2024-10-13 09:43:27
string value = "HTQ7899HBVxzzxx";
Console.WriteLine(new string(
     value.Where(x => (x >= '0' && x <= '9'))
     .ToArray()));
string value = "HTQ7899HBVxzzxx";
Console.WriteLine(new string(
     value.Where(x => (x >= '0' && x <= '9'))
     .ToArray()));
薔薇婲 2024-10-13 09:43:27

如果您只需要数字并且确实想要 Linq,请尝试以下操作:

youstring.ToCharArray().Where(x => char.IsDigit(x)).ToArray();

If you need only digits and you really want Linq try this:

youstring.ToCharArray().Where(x => char.IsDigit(x)).ToArray();
那伤。 2024-10-13 09:43:27

使用 LINQ:

public string FilterString(string input)
{
    return new string(input.Where(char.IsNumber).ToArray());
}

Using LINQ:

public string FilterString(string input)
{
    return new string(input.Where(char.IsNumber).ToArray());
}
淡忘如思 2024-10-13 09:43:27

像这样的东西吗?


"XQ74MNT8244A".ToCharArray().Where(x => { var i = 0; return Int32.TryParse(x.ToString(), out i); })

Something like this?


"XQ74MNT8244A".ToCharArray().Where(x => { var i = 0; return Int32.TryParse(x.ToString(), out i); })
套路撩心 2024-10-13 09:43:27
string s = "XQ74MNT8244A";
var x = new string(s.Where(c => (c >= '0' && c <= '9')).ToArray());
string s = "XQ74MNT8244A";
var x = new string(s.Where(c => (c >= '0' && c <= '9')).ToArray());
街道布景 2024-10-13 09:43:27

为您执行此操作的扩展方法(和重载)怎么样:

    public static string NumbersOnly(this string Instring)
    {
        return Instring.NumbersOnly("");
    }

    public static string NumbersOnly(this string Instring, string AlsoAllowed)
    {
        char[] aChar = Instring.ToCharArray();
        int intCount = 0;
        string strTemp = "";

        for (intCount = 0; intCount <= Instring.Length - 1; intCount++)
        {
            if (char.IsNumber(aChar[intCount]) || AlsoAllowed.IndexOf(aChar[intCount]) > -1)
            {
                strTemp = strTemp + aChar[intCount];
            }
        }

        return strTemp;
    }

重载是为了让您可以保留“-”、“$”或“.”。如果您愿意的话(而不是严格的数字)。

用法:

string numsOnly = "XQ74MNT8244A".NumbersOnly();

How about an extension method (and overload) that does this for you:

    public static string NumbersOnly(this string Instring)
    {
        return Instring.NumbersOnly("");
    }

    public static string NumbersOnly(this string Instring, string AlsoAllowed)
    {
        char[] aChar = Instring.ToCharArray();
        int intCount = 0;
        string strTemp = "";

        for (intCount = 0; intCount <= Instring.Length - 1; intCount++)
        {
            if (char.IsNumber(aChar[intCount]) || AlsoAllowed.IndexOf(aChar[intCount]) > -1)
            {
                strTemp = strTemp + aChar[intCount];
            }
        }

        return strTemp;
    }

The overload is so you can retain "-", "$" or "." as well, if you wish (instead of strictly numbers).

Usage:

string numsOnly = "XQ74MNT8244A".NumbersOnly();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文