循环去textbok中“;”值 在textbok中输入a;b;c;d 怎样循环取textbok中“;”中的a b c d
在循环添加到数据库中
------解决方案--------------------
------解决方案--------------------
C# code
...
string text = "a;b;c;d";
string[] s = text.Split(';');
foreach(string ss in s)
{
string strSQL = "insert into 表名 values('"+ss+"')";
//执行SQL语句,插入数据库
}
...