从文本中删除 Word 2007 标签

发布于 2024-07-23 10:48:18 字数 90 浏览 3 评论 0原文

有没有一种方法可以从服务器端 (.NET) 或客户端 (javascript) 上的 Word 2007 复制粘贴的文本中删除标签。 我只需要文本,不需要任何格式。

Is there a way to remove tags from text, that was copy-pasted from Word 2007 on a server side (.NET) or client one (javascript). I need just text, without any formatting.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

霓裳挽歌倾城醉 2024-07-30 10:48:18

我建议删除服务器站点上的所有标签,这样使用停用的 JavaScript 的人就不会看到它们:

using System.Text.RegularExpressions;
string word2007 = "<h3>word2007</h3><p>test</p>";
Regex.Replace(word2007 ,"<[^>]*>",string.Empty)

I would suggest removing all tags on the server site, so no one with deactivated JavaScript sees them:

using System.Text.RegularExpressions;
string word2007 = "<h3>word2007</h3><p>test</p>";
Regex.Replace(word2007 ,"<[^>]*>",string.Empty)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文