中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2021-07-12 15:45:54 來源:億速云 閱讀:178 作者:chen 欄目:編程語言

這篇文章主要講解了“NET如何從 string 中挖出所有的 number ?”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“NET如何從 string 中挖出所有的 number ?”吧!

 

咨詢區

  • van:

我現在有一個需求,想從 string 中找到所有的 number 并提取出來。

舉例如下:


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

 

請問我該如何做?

 

回答區

  • Tabares:

這個簡單,可以用正則表達式 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:

我寫了一個擴展方法可以提取出 string 中所有的正整數,方法如下:


    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;
        }
    }

 

然后像下面這樣調用

        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 ?”的內容了,經過本文的學習后,相信大家對NET如何從 string 中挖出所有的 number ?這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿荣旗| 叙永县| 安丘市| 珠海市| 博兴县| 灌云县| 徐州市| 盘锦市| 阳原县| 晋宁县| 霞浦县| 木里| 三门峡市| 清苑县| 庄河市| 天水市| 彭泽县| 白玉县| 永胜县| 黄大仙区| 大洼县| 鸡泽县| 故城县| 宜城市| 武汉市| 平果县| 桑植县| 汝南县| 通化市| 澳门| 淳化县| 基隆市| 乐山市| 徐汇区| 翼城县| 马关县| 丹寨县| 土默特左旗| 尚志市| 建水县| 阿勒泰市|