包括一个“新行”;使用 GSMCommunication Library 在短信中
我正在使用 GsmCommMain
类发送短信
我想在我的短信中包含新行,我尝试了正常的默认Environment.NewLine
和图表集\0x0A
,但实际上什么也没有有帮助..
有什么建议吗?
编辑:Environment.NewLine
完成了这项工作,
结果发现系统有这段代码
body = body.Replace("\t", " ").Replace("\n", " ").Replace("\r", " ");
谢谢,问题已解决
I'm using the GsmCommMain
class to send an sms
I want to include a new line in my sms, i tried the normal default Environment.NewLine
and the chart set \0x0A
but nothing realy had helped..
any suggestions?
Edit:Environment.NewLine
did the job
turns out that the system has this block of code
body = body.Replace("\t", " ").Replace("\n", " ").Replace("\r", " ");
Thank you, issue is solved
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用 0X0D 和 0X0A 作为新行。
Try 0X0D and 0X0A both for new line.
一些需要调查的地方:
Some places to investigate:
Environment.NewLine
完成了这项工作,结果发现系统有这段代码
Environment.NewLine
did the jobturns out that the system has this block of code