我從一個網站得到了這段代碼。它將unicode轉換爲印地文字體。它使用匹配,但我不遵循如何在其他地方定義它。它在'>'附近產生錯誤。Match Evaluator not working
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;
更新
錯誤: '匹配' 不存在當前上下文存在。
,什麼是錯誤? – Strillo
錯誤是:匹配在當前上下文中不存在。 – RKh