为了账号安全,请及时绑定邮箱和手机立即绑定

求 一 linq查询语句

求 一 linq查询语句

ITMISS 2018-09-14 05:06:10
查询首字母为 数字 的记录
查看完整描述

1 回答

?
撒科打诨

TA贡献1934条经验 获得超2个赞

List<string> strlist = new List<string>();

            strlist.Add("1asdf");
            strlist.Add("2asdf");
            strlist.Add("easdf");
            strlist.Add("tasdf");

            var list = from l in strlist
                       where ASCIIEncoding.ASCII.GetBytes(l.ToString().Substring(0,1))[0] >= 48 && ASCIIEncoding.ASCII.GetBytes(l.ToString().Substring(0,1))[0] <= 57
                       select l;

            foreach(string str in list)
            {
                Console.WriteLine(str);
            }


查看完整回答
反对 回复 2018-09-18
  • 1 回答
  • 0 关注
  • 336 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信