Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当标签文本值以结束括号结尾时。从右到左的结果与示例一样是错误的。
文字:ABC (123) 结果:(ABC(123 预期结果:ABC (123)
有什么解决方案可以解决吗?
您必须在文本中使用 Unicode Right-to-left mark, ( U+200F)。相反,Left-to-right mark如果您知道需要 LTR 渲染,请使用 (`U+200E)。
Right-to-left mark
U+200F
Left-to-right mark
检查您的输入编码。您应该使用 UTF 系列或 unicode 来实现您的目标。还要在 Visual Studio 中检查您的文件编码。