如何在 ASP.NET MVC4 中拆分单词?
这是我到目前为止所尝试的。
public ActionResult Index()
{
var aaa = System.Text.RegularExpressions.Regex.Split("12:::34:::55", ":::");
ViewBag.test = aaa;
return View();
}
但页面显示System.String[]
。