我的ViewData
中有一个字符串。我需要将其拆分为COMMA
并计算单词的出现次数。
i.e. ViewData["words"] = "apple,orange,grape".
我需要分裂并得到3的答案。
答案 0 :(得分:2)
函数Split
将字符串转换为字符串数组。
如果我们有string a="hello,bill,gates";
,并在其上调用函数Split
string[] b = a.Split(',');
,b
的值变为{"hello", "bill", "gates"}
。
然后,用Length
计算元素数:
int count = ViewData["words"].Split(',').Length;
答案 1 :(得分:1)
您可以使用split
方法:
int count = ViewData["words"].Split(',').Length;