如何从 c++ 中的文件中读取印地文文本?
可能的重复:
关于在 Linux 中使用 C++ 进行印地文文本处理
文件包含印地文文本。我想读取这个文件并对其包含的文本执行一些操作。因此,如果有人可以解释如何从文件中读取它并处理它(或只是打印它)。 例如:如果文件包含
मै एक भारतीय हूँ।
那么我的程序应该从文件中读取此内容并在标准输出上打印上面的文本。 我想在Linux上执行它。
直接代码会更有利。
Possible Duplicate:
it about hindi text proccessing in in linux using c++
A file contains hindi text. I want to read this file and perform some operations on text it contains. So, if anyone could please explain how to read it from file and handle it(or just print it).
Ex: if file contains
मै एक भारतीय हूँ।
then my program should read this content from file and print above text on standard output.
I want to perform it on Linux.
Direct code will be more beneficial.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于编码。如果您的文件是用 Unicode 编码的,您只需使用广泛的 ANSI C 函数(
fwscanf
、fgetwc
等),您就可以读取任何语言的任何文件。Depends on the encoding. If your file is encoded in Unicode, you just have to use wide ANSI C functions (
fwscanf
,fgetwc
and so on) you will be able to read any file in any language.