gpt4 book ai didi

c# - 拆分一串数字和字符

转载 作者:行者123 更新时间:2023-11-30 20:00:15 27 4
gpt4 key购买 nike

我有一个 List liRoom,其中包含一个字母数字和字母字符串,例如

List<string> liRoom = new List<string>() {"Room1","Room2","Room3",  
"Room4","Hall","Room5","Assembly",
"Room6","Room7","Room8","Room9};

这个列表的类型是字母数字和字母,所以我想从这个字符串列表中获取最大数值。
我试过这样做

var ss = new Regex("(?<Alpha>[a-zA-Z]+)(?<Numeric>[0-9]+)");  
List<int> liNumeric = new List<int>();
foreach (string st in liRoom)
{
var varMatch = ss.Match(st);
liNumeric.Add(Convert.ToInt16(varMatch.Groups["Numeric"].Value));
}
int MaxValue = liNumeric.Max();// Result Must be 9 from above Example.

 List<int> liNumeric = new List<int>();  
foreach (string st in liRoom)
{
liNumeric.Add( int.Parse(new string(st.Where(char.IsDigit).ToArray())));
}
int MaxValue = liNumeric.Max();// Result Must be 9 from above Example.

但是当 stHall,Assembly
时两者都显示错误帮助我如何做到这一点。

最佳答案

您的代码中出现异常的原因很少。我为那些可能的异常(exception)添加了一些条件。

List<int> liNumeric = new List<int>();  
foreach (string st in liRoom)
{
// int.Parse will fail if you don't have any digit in the input
if(st.Any(char.IsDigit))
{
liNumeric.Add(int.Parse(new string(st.Where(char.IsDigit).ToArray())));
}

}
if (liNumeric.Any()) //Max will fail if you don't have items in the liNumeric
{
int MaxValue = liNumeric.Max();
}

关于c# - 拆分一串数字和字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21692356/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com