以任何具有适用于 OSX 的良好免费 IDE 的语言去除某些参数中的文本
我有一个 txt 文件,我想对其进行“grep”排序,并删除“<”和“>”之间(包括“<”和“>”)之间的任何内容。我正在使用 osx,所以如果你想推荐一个好的、免费的 IDE,或者我可以使用 emacs 来完成它,并且可能已经在操作系统上有某种编译器了。所以,我主要是在寻找剧本,无论什么语言。 ReplaceAll("<*>",""),类似的东西?那是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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: