比赛评估器不工作

发布于 2024-12-28 13:55:04 字数 395 浏览 0 评论 0原文

我从一个网站得到了这个代码。它将 unicode 转换为印地语字体。它使用匹配,但我没有遵循如何在其他地方定义它。它在“>”附近生成错误。

string input = "0928;0940;0932;092E;";
Regex rx = new Regex(@"([0-9A-Fa-f]{4});");
string output = rx.Replace(input, match =>  ((char)Int32.Parse(match.Groups[1].Value, NumberStyles.HexNumber)).ToString());
textBox1.Text = output;

已更新

错误:当前上下文中不存在“匹配”。

I got this code from a site. It converts unicode to Hindi font. It uses match but I am not following how to define it elsewhere. It generates error near '>'.

string input = "0928;0940;0932;092E;";
Regex rx = new Regex(@"([0-9A-Fa-f]{4});");
string output = rx.Replace(input, match =>  ((char)Int32.Parse(match.Groups[1].Value, NumberStyles.HexNumber)).ToString());
textBox1.Text = output;

Updated

Error: 'match' does not exist in the current context.

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

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

发布评论

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

评论(1

硬不硬你别怂 2025-01-04 13:55:04

如果您确实使用 C# 2.0(基于您的标记),则直到 C# 3.0 才支持 lambda 表达式。因此,您不能使用 match =>; ...

对于您的 string output = ... 行尝试此操作:

    string output = rx.Replace(input, delegate(Match match) {
        return ((char)Int32.Parse(match.Groups[1].Value, NumberStyles.HexNumber)).ToString();
    });

If you're truly using C# 2.0 (based on your tag), lambda expressions are not supported until C# 3.0. As such, you can't use match => ....

Try this instead for your string output = ... line:

    string output = rx.Replace(input, delegate(Match match) {
        return ((char)Int32.Parse(match.Groups[1].Value, NumberStyles.HexNumber)).ToString();
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文