在 C# 中处理 NUL (\0)

发布于 2024-11-08 14:00:08 字数 273 浏览 0 评论 0原文

我正在使用 oledb 从 .xls 文件中检索数据,并使用以下行将其分配给字符串变量 Values

values += "'" + System.Security.SecurityElement.Escape(row[i].ToString()) + "',";

对于最佳情况,效果很好,但如果任何单元格包含值 \0,此后values变量将不会更新为进一步的值。我怎样才能摆脱它?

I'm retrieving data from a .xls file using oledb and assigning it to a string variable Values using below line:

values += "'" + System.Security.SecurityElement.Escape(row[i].ToString()) + "',";

It woks fine for best case, but if any cell contains the value \0, thereafter values variable will not update with further values. How can I get rid from it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〆凄凉。 2024-11-15 14:00:08

那么,您可以非常轻松地从字符串中删除空字符:

text = text.Replace("\0", "");

...但是有什么方法可以使用准备好的语句,而不是将值直接放入 SQL 中吗?或者OLEDB不支持这个?

Well you can get rid of null characters from a string really easily:

text = text.Replace("\0", "");

... but is there any way you can use a prepared statement instead of putting the values directly into the SQL? Or does OLEDB not support that?

蓝天 2024-11-15 14:00:08

您可以使用条件运算符(condition??true:false)来检查传入的值是否为\0
我只是将这个修改为

values += "'" + System.Security.SecurityElement.Escape(row[i].ToString()!="\0"?row[i].ToString():"") + "',";

或者你可以使用这个。

values += "'" + System.Security.SecurityElement.Escape(row[i].ToString()??"") + "',";

You can use conditional operator(condition??true:false) to check whether the coming value is \0 or not
i just Modify this one as

values += "'" + System.Security.SecurityElement.Escape(row[i].ToString()!="\0"?row[i].ToString():"") + "',";

or you can use this one.

values += "'" + System.Security.SecurityElement.Escape(row[i].ToString()??"") + "',";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文