文件 i/o 期间 .net 中的字符串操作 - 以前是制表符,现在是 §

发布于 2024-12-09 18:59:55 字数 304 浏览 0 评论 0原文

在我当前的代码中,我将此代码用于具有分隔符选项卡的文件,因此我在代码中使用“\t” 现在分隔符更改为 § 而不是制表符,因此应使用什么 ASCII 转义序列。

当前代码:

string[] strFields = inputRecord.Split('\t');

新代码:

string[] strFields = inputRecord.Split('***'); what *** should be?

我尝试使用 § 但不起作用

In my current code, I am using this code for files which have delimiter tab so I use '\t' in code
Now delimiter changed to § instead of tab so what ASCII escape sequence should be used.

Current code:

string[] strFields = inputRecord.Split('\t');

New code:

string[] strFields = inputRecord.Split('***'); what *** should be?

I tried with § but does not work

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

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

发布评论

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

评论(2

一杆小烟枪 2024-12-16 18:59:55

您可能以错误的编码读取了该文件。尝试不同的编码:

new StreamReader(fileName, Encoding.GetEncoding("iso-8859-1")))

You probably read the file in the wrong encoding. Try a different encoding:

new StreamReader(fileName, Encoding.GetEncoding("iso-8859-1")))
像你 2024-12-16 18:59:55

您是否尝试过输入 unicode 字符转义码?

string[] strFields = inputRecord.Split('\u00A7');

不过,在文本中直接使用 § 对我来说很有效:

string[] strFields = inputRecord.Split('§');

您确定使用了正确的 unicode 字符吗?由于 .NET 字符串是 unicode,您确定该字符已映射到该 unicode 字符吗?例如,如果您的源字符串是 ansi,那么代码页之类的内容可能会有所不同。

编辑:我会尝试马克的建议,这可能是一个代码页问题,我怀疑他的解决方案会起作用。

Have you tried putting in the unicode character escape code instead?

string[] strFields = inputRecord.Split('\u00A7');

Though, using the § straight in the text worked for me:

string[] strFields = inputRecord.Split('§');

Are you sure that you used the correct unicode character? Since .NET strings are unicode, are you sure that the character is being mapped to that unicode character? It could be a difference in something like a codepage, if your source string was ansi, for example.

EDIT: I would try Mark's suggestion, it probably is a codepage problem, and I suspect his solution would work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文