c# 怎么随机调用string文字中的某一行
展开全部
string str = "第一行\r\n第二行\r\n第三行\r\n第四行";
//根据换行符清楚总共有几个行,这里用到正则表达式
Regex reg = new Regex(@"\r\n");
int count = reg.Matches(str).Count + 1;
//取随机数,0~总行数
Random srand = new Random();
int randNum = srand.Next(0, count);//Next(0,count)取值范围是0<=x<count
//根据换行符把字符串所有行都一行行分解出来
string[] arryRows = str.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
//最后根据随机数去取随机行
Console.WriteLine(arryRows[randNum]);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询