C# 写入文本如何自动换行 50

stringContent="OnemajorstickingpointisaprovisionthatwouldallowAmericanstobuyafederal-... string Content = "One major sticking point is a provision that would allow Americans to buy a federal-run insurance plan if their state allows it. Moderates say they worry the so-called public option will become a huge and costly entitlement program and that other requirements in the bill could cripple businesses.";

如何让上面的Content变量保存到一个文本文件里,且每隔40个字符自动换行:如果是空格, 就直接另起一行, 如果是单词就在39个字符后加一个连接符(-).
类似于:
My Name is Alex, th-
is is a reply that
for the purpose of
solving a text for-
matting issue.

第一行,this之间加一个"-"然后换行
第二行和第三行空格, 直接换行.
最后一行没有超过字符,直接换行.

保存文件已经实现,但是这个自动换行,搞了N就都不对.
1L不懂别乱回答.
//
目前还没有一个能用的. xuzicn也不能用

//xuzicn,你运行小郭不能满足需求.
展开
 我来答
xuzicn
2009-11-24 · TA获得超过112个赞
知道小有建树答主
回答量:183
采纳率:0%
帮助的人:196万
展开全部
string Content = "One major sticking point is a provision that would allow Americans to buy a federal-run insurance plan if their state allows it. Moderates say they worry the so-called public option will become a huge and costly entitlement program and that other requirements in the bill could cripple businesses.";

StringBuilder builder = new StringBuilder();
while (Content.Length > 40)
{
builder.Append(Content.Substring(0, 39));
if (Content[39].Equals(' '))
{
builder.Append("\r\n");
Content = Content.Substring(40);
}
else
{
builder.Append("-\r\n");
Content = Content.Substring(39);
}
}
builder.Append(Content);

string result = builder.ToString();

怎么不能用,我自己试过了,结果是正确的,有错误消息么
红衣老大之一
2009-11-24 · TA获得超过365个赞
知道小有建树答主
回答量:767
采纳率:0%
帮助的人:408万
展开全部
价格换行符号

Constants.vbCrLf
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友6f75ac8fa
2009-11-24 · TA获得超过2513个赞
知道大有可为答主
回答量:1.3万
采纳率:0%
帮助的人:4022万
展开全部
要自己设置换行的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tashika
2009-11-24 · 超过30用户采纳过TA的回答
知道答主
回答量:125
采纳率:0%
帮助的人:74.5万
展开全部
你要不要试下FlowDocument
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式