vb.net 如何检查字符串是否为 UNICODE
有没有办法使用 VB.net 检查字符串是否为 UNICODE。
此致 因奇卡
Is there any way to check if the string is UNICODE using VB.net.
Best Regards
inchikka
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
编码
该文件是写入的。
它似乎是一个非 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 anEncoding
as parameter.您可以通过根据 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?