使用混合语言重新排列字符串(LTR + RTL)?
我有一份混合语言的文本(一个 LTR 和另一个 RTL)。在 SMTP 上发送字符串时,字符串会混淆。有什么方法可以识别该字符串吗?
I have a text with mixed languages, (one LTR and the other RTL).when sending the string on SMTP the string gets mixed up .Is there any way to recognize the string ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RTL 只影响文本的显示,而不影响传输。不确定“混合”可能意味着什么,但我建议您仔细查看 MailMessage.BodyEncoding 属性。默认值为 ASCII,不适合发送 RTL 语言中使用的字符类型。如果这没有帮助,那么请考虑问题实际上可能是由您正在使用的邮件阅读器引起的。它可能不支持 RTL 或无法处理混合。
RTL only affects the display of text, not the transmission. Not sure what "mixed up" might mean but I'd recommend you take a good look at the MailMessage.BodyEncoding property. The default is ASCII, not suitable for sending the kind of characters used in a RTL language. If that doesn't help then consider that the problem might actually be caused by the mail reader you are using. It might not support RTL or cannot handle a mix.