识别输入字符串的代码页
如何识别输入字符串的代码页,例如,如果我用西里尔字母输入某些内容,它应该返回 windows-1251,当我用中文输入字符串时,它应该返回其他代码页等
How to recognize code page of input string, for example if I put something in Cyrillic it should return windows-1251 and when I put string in Chinese it return other code page etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这是来自文本框(Windows 窗体)的输入,则该字符串是 .Net 字符串,并且始终采用 unicode (UTF-16)。
如果您从 Web 表单 (aspx) 页获取输入,浏览器也会随之发送代码页。 .Net 将为您将其转为 unicode。
如果您从文件中获取输入,我祝你好运;-)。
If this is an input from a textbox (windows forms) the string is a .Net string, and is always in unicode (UTF-16).
If you get the input from a Web form (aspx) page, the browser also sends the codepage with it. And .Net will make it unicode for you.
If you get the input from a file, I wish you good luck ;-).