作者:2010级嵌入式 张坤
[root@localhost 桌面]# cat testfile.txt
Hello World
Welcome to the world of regexp!<script type="text/javascript" src="/js/jquery.qqFace.js"></script>
[root@localhost 桌面]# sed 's/<[^<>]*>//g' testfile.txt
Hello World
Welcome to the world of regexp!
[root@localhost 桌面]#
阅读(1148) | 评论(1) | 转发(1) |
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
[root@localhost 桌面]# cat testfile.txt
Welcome to the world of regexp!<script type="text/javascript" src="/js/jquery.qqFace.js"></script>
[root@localhost 桌面]# sed 's/<[^<>]*>//g' testfile.txt
Hello World
Welcome to the world of regexp!
[root@localhost 桌面]#