この文字列の削除で始まる場合は DataTable で文字列を検索し、"null"
この行に値がない場合はこの行も消去します。誰かがそれを行う方法を教えてもらえますか?
ID Name Comment
2 lola hallo
5 miky hi
null0 // delete null0 and remove this row
null1 ko // delete null1 but do not remove this row
1 hub why
3 null2 //delete null2 but do not remove this row
削除しようとしまし"null"
たが、うまくいきません。
私のコード:
int ct1 = 0;
for (int i = 0; i < resE1.Rows.Count; i++ )
{
if(resE1.Rows[i]["SignalName"].ToString() == "null" + ct1)
{
resE1.Rows[i].SetField<String>(2, "");
}
ct1++;
}
空のスペースに置き換える解決策を見つけました"null*"
が、この行のセル値が空の場合にこの行を消去したいのですが、どうすればよいですか?
int ct1 = 0;
for (int i = 0; i < resE1.Rows.Count; i++)
{
string fix = resE1.Rows[i]["SignalName"].ToString();
if(fix.Contains("null"))
{
resE1.Rows[i].SetField<String>(2, "");
}
ct1++;
}