4 回答
TA贡献1776条经验 获得超12个赞
1) 用逗号 ( ,) 分割字符串。
2)用字符空间()和管道(|)修剪分割字符串中的每个元素
3) 将每个元素解析为int
string str = "| 1 |,| 2 |,| 3 |,| 4 |,| 5 |,| 6 |,| 7 |,| 8 |,| 9 |,| 10 |,| 11 |,| 12 |,| 13 |,| 14 |,| 15 |,| 16 |,| 17 |,| 18 |,| 19 |,| 20 |,| 21 |,| 22 |,| 23 |,| 24 |,| 25 |,| 26 |,| 27 |,| 28 |,| 29 |,| 30 |,| 31 |,| 32 |,| 33 |,| 34 |,| 35 |,| 36 |,| 37 |,| 38 |,| 39 |,| 40 |,| 41 |,| 42 |,| 43 |,| 44 |,| 45 |,| 46 |,| 47 |,| 48 |,| 49 |,| 50 |,| 51 |,| 52 |,| 53 |";
int[] arr = str.Split(',')
.Select(x => x.Trim(new char[] { ' ', '|' }))
.Select(x => int.Parse(x))
.ToArray();
现在这arr 是你的整数数组。
在线演示
选择:
1) 删除管道( |
) 和空格( )。
2) 用逗号( ,
) 分割。
3) 将每个拆分的字符串解析为 int。
int[] arr = str.Replace("|", "") .Replace(" ", "") .Split(',') .Select(x => int.Parse(x)) .ToArray();
在线演示
TA贡献1829条经验 获得超7个赞
这将为您工作:
string str = "|1|,|2|,|3|,|4|,|5|,|6|,|7|,|8|,|9|,|10|,|11|,|12|,|13|,|14|,|15|,|16|,|17|,|18|,|19|,|20|,|21|,|22|,|23|,|24|,|25|,|26|,|27|,|28|,|29|,|30|,|31|,|32|,|33|,|34|,|35|,|36|,|37|,|38|,|39|,|40|,|41|,|42|,|43|,|44|,|45|,|46|,|47|,|48|,|49|,|50|,|51|,|52|,|53|";
str = str.Replace("|", "");
string[] subStrings = str.Split(',');
int[] ints = new int[subStrings.Length];
for (int i = 0; i < subStrings.Length; i++)
{
ints[i] = Convert.ToInt32(subStrings[i]);
}
TA贡献1712条经验 获得超3个赞
我想出了您要求的正则表达式方法。首先,您必须使用正则表达式模式\d+查找所有数字,此模式匹配一个或多个数字。使用Regexstorm 测试来测试你的正则表达式。循环匹配并分配给您的数组。
这是我提出的 C# 交互式示例:
string input = "| 1 |,| 2 |,| 3 |,| 4 |,| 5 |,| 6 |,| 7 |,| 8 |,| 9 |,| 10 |,| 11 |,| 12 |,| 13 |,| 14 |,| 15 |,| 16 |,| 17 |,| 18 |,| 19 |,| 20 |,| 21 |,| 22 |,| 23 |,| 24 |,| 25 |,| 26 |,| 27 |,| 28 |,| 29 |,| 30 |,| 31 |,| 32 |,| 33 |,| 34 |,| 35 |,| 36 |,| 37 |,| 38 |,| 39 |,| 40 |,| 41 |,| 42 |,| 43 |,| 44 |,| 45 |,| 46 |,| 47 |,| 48 |,| 49 |,| 50 |,| 51 |,| 52 |,| 53 |";
MatchCollection matches = Regex.Matches(input, @"\d+");
int[] values = new int[matches.Count];
for (int i = 0; i < matches.Count; i++)
values[i] = Convert.ToInt32(matches[i].Value);
TA贡献1155条经验 获得超0个赞
private void button1_Click(obj sender,EventArgs e)
{
String str = "|1|,|2|,|3|,|4|...";
char[] ch =str.ToArray(),weekList=new char[ch.Length];
Int index=1;
for (int i=1;i < ch.Length ;i++)
{
if(index < ch.length-1)
{
weekList[i] = ch[index];
Index += 4;
}
}
MessageBox.Show(weekList[0]);//1
MessageBox.Show(weekList[9]);//10
}
- 4 回答
- 0 关注
- 75 浏览
添加回答
举报