以任何具有适用于 OSX 的良好免费 IDE 的语言去除某些参数中的文本

发布于 2024-10-17 04:42:57 字数 224 浏览 2 评论 0原文

我有一个 txt 文件,我想对其进行“grep”排序,并删除“<”和“>”之间(包括“&lt”和“&gt”)之间的任何内容。我正在使用 osx,所以如果你想推荐一个好的、免费的 IDE,或者我可以使用 emacs 来完成它,并且可能已经在操作系统上有某种编译器了。所以,我主要是在寻找剧本,无论什么语言。 ReplaceAll("&lt*&gt",""),类似的东西?那是java还是什么?

I have a txt file that I want to sort of 'grep' through and get rid anything between and including '<' and '>'. i am using osx so if you want to recommend a good, free IDE, or if I can just do it with emacs and probably already have a compiler of some sort on the OS. so, I am looking for the script mainly, in whatever language. ReplaceAll("<*>",""), something like that? Is that java or what?

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

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

发布评论

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

评论(1

瀞厅☆埖开 2024-10-24 04:42:57

您可以使用 sed 来实现此目的。尝试 sed "s/<[^>]*>//g" file.html

这将替换所有出现的 <[^>]*& ;gt (这是 > 和 之间所有文本的基本正则表达式)

有关更多详细信息,请参阅:

You can use sed for this. Try sed "s/<[^>]*>//g" file.html

That will replace all occurrences of <[^>]*> (which is a basic regular expression for all text between > and )

For more details, see:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文