C# 中的 Unicode bidi 文本算法?

发布于 2024-12-20 05:19:00 字数 142 浏览 2 评论 0原文

是否有 C# 版本的 Unicode 算法可以接受 Unicode 字符串并将其分解为可以正确呈现的运行?每次运行都应该是从左到右或从右到左。

我们知道这是 Java ICU4J 的一部分,但那是一个大型库,我们只是在寻找这个特定的功能,以正确呈现文本。

Is there a C# version of the Unicode algorithm that takes a Unicode string and breaks it into runs that can be correctly rendered? Each run should be either left-to-right or right-to-left.

We understand this is part of the Java ICU4J, but that is a large library, and we're only looking for this specific functionality, to render text correctly.

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

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

发布评论

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

评论(1

So要识趣 2024-12-27 05:19:00

这是双向处理的 unicode 标准:

UNICODE 双向算法

另请尝试:

实现:

  1. JAVA
  2. C++

我相信您将能够相当简单地将它们转换为 C#

This is the unicode standard for bidi handling:

UNICODE BIDIRECTIONAL ALGORITHM

Also try: this

Implementations:

  1. JAVA
  2. C++

I'm sure you will be able to convert them to c# fairly simply

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