我有一个字符串,用于发送到 mailto。
我想找到所有特殊字符,然后将它们转义,以使我的邮件正常工作,而无需避免选择编写特殊字符。
例如,如果我的字符串包含 a #
,我的 mailto 的正文将在它之前停止。
String strCmd = String.Format("window.open(\"mailto:{0}?subject={1}&body={2}\");",
toEmail, subject, body);
如果我的弦体是这样的:
body = "This is a string to test c# code with a mailto";
然后 mailto 将包含This is a string to test c
.
我该如何解决这个问题,以获得This is a string to test c# code with a mailto
?
如果有的话,它也必须制作 backLine。
谢谢你。