如何从 c++ 中的文件中读取印地文文本?

发布于 2024-09-05 17:07:29 字数 509 浏览 7 评论 0原文

可能的重复:
关于在 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 技术交流群。

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

发布评论

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

评论(1

北城挽邺 2024-09-12 17:07:29

取决于编码。如果您的文件是用 Unicode 编码的,您只需使用广泛的 ANSI C 函数(fwscanffgetwc 等),您就可以读取任何语言的任何文件。

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.

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