StringBuilder 中的换行符
如何在 StringBuilder
中追加新行(\n\r)字符?
How do you append a new line(\n\r) character in StringBuilder
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 StringBuilder
中追加新行(\n\r)字符?
How do you append a new line(\n\r) character in StringBuilder
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(8)
我将使用 Environment.NewLine 属性。
例如:
或者
如果您希望在每次追加后有一个新行,您可以查看 本·沃伊特的回答。
I would make use of the Environment.NewLine property.
Something like:
Or
If you wish to have a new line after each append, you can have a look at Ben Voigt's answer.
使用AppendLine 方法。
َََ
With the AppendLine method.
َََ
另外,使用 StringBuilder.AppendLine 方法。
Also, using the StringBuilder.AppendLine method.
使用 StringBuilder 的追加行内置函数:
输出
Use StringBuilder's append line built-in functions:
Output
在 Linux 中它将附加
\n
而不是\r\n
。It will append
\n
in Linux instead\r\n
.您可以使用sb.AppendLine()或sb.Append(Environment.NewLine);
You can use sb.AppendLine() or sb.Append(Environment.NewLine);
对于多行,我发现最好的方法是这样做:
这样,您就不必多次重复使用 Environment.NewLine 或 AppendLine() 来使屏幕变得混乱。与必须记住键入它们相比,它也更不容易出错。
For multiple lines the best way I find is to do this:
In this way you don't have to clutter the screen with the Environment.NewLine or AppendLine() repeated multiple times. It will also be less error prone than having to remember to type them.
只需为 StringBuilder 类创建一个扩展:
Just create an extension for the StringBuilder class: