您好,登錄后才能下訂單哦!
這篇文章主要講解了“NET如何從 string 中挖出所有的 number ?”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“NET如何從 string 中挖出所有的 number ?”吧!
我現在有一個需求,想從 string 中找到所有的 number 并提取出來。
舉例如下:
string test = "1 hello"
string test1 = " 1 world"
string test2 = "helloworld 99"
請問我該如何做?
這個簡單,可以用正則表達式 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);
}
}
}
}
可以試著用 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}");
}
}
我寫了一個擴展方法可以提取出 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 ?這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。