码迷,mamicode.com
首页 > 其他好文 > 详细

判断一个数值是否在一个逗号分隔的字符串中

时间:2017-01-10 19:25:25      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:new   font   方式   div   数据   字符串   any   plist   contain   

  1. 使用表达式方式:
string s = "12,123,1234,32,321,345";
if (s.Split(‘,‘).Any(x => x == "12"))
     //存在
 
    2.
      string a = "1,2,3,4,5,6";
  if(a.IndexOf(“3,")>-1)
  {
   //字符串A中包含字符串B
  }
      string a = "1,2,3,4,5,6";
  List<string> oTempList = new List<string>(a.Split(‘,‘}));
  if(oTempList.Contains(“3"))
  {
   //字符串数据A中包含字符串元素B
  }
 

判断一个数值是否在一个逗号分隔的字符串中

标签:new   font   方式   div   数据   字符串   any   plist   contain   

原文地址:http://www.cnblogs.com/kongxiaoshuang/p/6270148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!