溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

NET如何從 string 中挖出所有的 number ?

發(fā)布時(shí)間:2021-07-12 15:45:54 來(lái)源:億速云 閱讀:177 作者:chen 欄目:編程語(yǔ)言

這篇文章主要講解了“NET如何從 string 中挖出所有的 number ?”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“NET如何從 string 中挖出所有的 number ?”吧!

 

咨詢區(qū)

  • van:

我現(xiàn)在有一個(gè)需求,想從 string 中找到所有的 number 并提取出來(lái)。

舉例如下:


string test = "1 hello"
string test1 = " 1 world"
string test2 = "helloworld 99"

 

請(qǐng)問(wèn)我該如何做?

 

回答區(qū)

  • Tabares:

這個(gè)簡(jiǎn)單,可以用正則表達(dá)式 Regex.Split 提取所有的 number,使用下面的代碼。


    public class Program
    {
        static void Main(string[] args)
        {
            string input = "There are 4 numbers in this string: 40, 30, and 10.";

            // Split on one or more non-digit characters.
            string[] numbers = Regex.Split(input, @"\D+");
            
            foreach (string value in numbers)
            {
                if (!string.IsNullOrEmpty(value))
                {
                    int i = int.Parse(value);
                    Console.WriteLine("Number: {0}", i);
                }
            }
        }
    }

 
NET如何從 string 中挖出所有的 number ?  

  • Ramireddy Ambati:

可以試著用 Regex.Matches 提取。


        static void Main(string[] args)
        {
            string input = "Hello 20, I am 30 and he is 40";

            var numbers = Regex.Matches(input, @"\d+").OfType<Match>().Select(m => int.Parse(m.Value)).ToArray();

            foreach (var item in numbers)
            {
                Console.WriteLine($"number: {item}");
            }
        }

 
NET如何從 string 中挖出所有的 number ?  

  • Thomas C. G. de Vilhena:

我寫了一個(gè)擴(kuò)展方法可以提取出 string 中所有的正整數(shù),方法如下:


    public static class StringExt
    {
        public static List<long> Numbers(this string str)
        {
            var nums = new List<long>();
            var start = -1;
            for (int i = 0; i < str.Length; i++)
            {
                if (start < 0 && Char.IsDigit(str[i]))
                {
                    start = i;
                }
                else if (start >= 0 && !Char.IsDigit(str[i]))
                {
                    nums.Add(long.Parse(str.Substring(start, i - start)));
                    start = -1;
                }
            }
            if (start >= 0)
                nums.Add(long.Parse(str.Substring(start, str.Length - start)));
            return nums;
        }
    }

 

然后像下面這樣調(diào)用

        public static void Main(string[] args)
        {
            var input = "I was born in 1989, 27 years ago from now (2016)";

            foreach (var item in input.Numbers())
            {
                Console.WriteLine($"number: {item}");
            }
        }
 
NET如何從 string 中挖出所有的 number ?    

感謝各位的閱讀,以上就是“NET如何從 string 中挖出所有的 number ?”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)NET如何從 string 中挖出所有的 number ?這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI