我目前正在从内部数据库中的字段中删除html标记.除了将
标签转换为纯文本新行字符外,一切都顺利进行.
我想转换这个:
The victory halted Spain’s 35-game unbeaten streak, handing the Spanish their first defeat since November 2006. The Americans now advance to the final Sunday to face the winner of Thursday’s semifinal between South Africa and Brazil, the five-time World Cup winner. Brazil defeated the Americans, 3-0, in their earlier meeting in this tournament.<br>
<br>
In the final, though, the United States will be without midfielder Michael Bradley, who received a red card for a harsh tackle in the 87th minute, the third such ejection for the Americans in this tournament. It was the only careless blemish on an otherwise nearly perfect evening.
Run Code Online (Sandbox Code Playgroud)
对此:
The victory halted Spain’s 35-game unbeaten streak, handing the Spanish their first defeat since November 2006. The Americans now advance to the final Sunday to face the winner of Thursday’s semifinal between South Africa and Brazil, the five-time World Cup winner. Brazil defeated the Americans, 3-0, in their earlier meeting in this tournament.
In the final, though, the United States will be without midfielder Michael Bradley, who received a red card for a harsh tackle in the 87th minute, the third such ejection for the Americans in this tournament. It was the only careless blemish on an otherwise nearly perfect evening.
Run Code Online (Sandbox Code Playgroud)
我使用以下代码行将更改
为新行字符:
value = value.Replace("<br>", Environment.NewLine).Trim();
Run Code Online (Sandbox Code Playgroud)
运行该代码后,这是我的数据库中保存的内容:
The victory halted Spain's 35-game unbeaten streak, handing the Spanish their first defeat since November 2006. The Americans now advance to the final Sunday to face the winner of Thursday's semifinal between South Africa and Brazil, the five-time World Cup winner. Brazil defeated the Americans, 3-0, in their earlier meeting in this tournament. In the final, though, the United States will be without midfielder Michael Bradley, who received a red card for a harsh tackle in the 87th minute, the third such ejection for the Americans in this tournament. It was the only careless blemish on an otherwise nearly perfect evening.
Run Code Online (Sandbox Code Playgroud)
如果我将解析后的文本保存到我的数据库并将其粘贴到记事本或Word中,我只得到一个而不是两个.
这是处理这个问题的正确方法吗?我使用的数据库是SQL Server 2005.
根据您的后续评论(当您调试它时),听起来正确的值至少已正确发送到数据库。
它可能没这么简单,但值得检查...当您说“运行查询来提取值...并将其粘贴到 Word”时,您使用什么来执行查询?因为我知道如果您在默认的“结果到网格”视图中使用 SQL Server 2005 Management Studio 查询某些内容,它不会正确呈现新行(我认为它只是用空格替换它们)...如果您将其切换为“结果到文本”(或者您在代码中从数据库获取值并调试返回的值),您将获得更准确的实际值表示,并显示新行...