gpt4 book ai didi

c# - 如何在希伯来语中使用 String.Format

转载 作者:行者123 更新时间:2023-11-30 18:12:57 25 4
gpt4 key购买 nike

我目前使用的是字符串格式。在我的其他语言中完美运行,但我在使用希伯来语时遇到问题。

var msg = string.Format("{קיבלת בקשה חדשה להפנייה מ{0} ו {1} {2", "test1", "test2", "test3");

这会崩溃,并且希伯来文文本带有下划线,表明这是一个无效的占位符。

请问如何使用 String.Format 处理希伯来语文本

最佳答案

尝试使用字符串插值

var test1 = "test1";
var test2 = "test2";
var test3 = "test3";
var msg = $"{test3} {test2} ו {test1} קיבלת בקשה חדשה להפנייה מ";

关于c# - 如何在希伯来语中使用 String.Format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54352499/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com