vb.net 如何检查字符串是否为 UNICODE

发布于 2024-11-15 02:44:09 字数 54 浏览 3 评论 0原文

有没有办法使用 VB.net 检查字符串是否为 UNICODE。

此致 因奇卡

Is there any way to check if the string is UNICODE using VB.net.

Best Regards
inchikka

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

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

发布评论

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

评论(2

倚栏听风 2024-11-22 02:44:09

您需要使用编码该文件是写入的。

它似乎是一个非 Unicode 文件,您正尝试将其读取为 Unicode,或者可能是与默认 UTF-8 不同的 Unicode 编码(例如,可能是 UTF-16) 。

StreamWriter几个构造函数, code>Encoding 作为参数。

You need to read the file using the Encoding that the file is written in.

It appears to be a non Unicode file that you are trying to read as Unicode, or possibly a different Unicode encoding than the default UTF-8 (could be UTF-16 for example).

StreamWriter has several constructors that the an Encoding as parameter.

囚我心虐我身 2024-11-22 02:44:09

您可以通过根据 ASCII 表中的 128 个字符验证字符串中的每个字符来完成此操作。如果在那里找不到该字符,那么它可能是一个 unicode 字符。

你是这个意思吗?

You can do it by validating each character in the string against the 128 characters in the ASCII table. If the character is not found there then it might be a unicode character.

Is that what you mean?

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