判斷逗號分隔的字符串是否包含某個字符串

好比string str="1,21,32,44,55"spa

若是直接判斷是否包含字符串+逗號的話,好比「1,」就會有問題,有兩種方法code

if (strt.StartsWith(name+",")||
    strt.Contains(","+name+",")||
    str.EndsWith(","+name))
{

}
////////////////////////方式1//////////////////////////////
String[] listValues = strSplit(',');
if (listValues.Contains(name))
{

}////////////////////////方式2////////////////////////////////
相關文章
相關標籤/搜索