java中XML文件中的注释

java中XML文件中的注释

本文介绍了正则表达式删除Eclipse java中XML文件中的注释的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以告诉我如何编写正则表达式以匹配XML文件中的注释,例如,

Can anyone tell me how to write a regular expression to match the comments in XML file, for example,

<!-- Global JNDI resources
   Documentation at /docs/jndi-resources-howto.html
-->

我正在使用Eclipse(java)并希望从XML文件中删除这些注释。

I'm using Eclipse (java) and want to remove those comments from XML file.

推荐答案

xmlFileContent.replaceAll( "(?s)<!--.*?-->", "" );

这篇关于正则表达式删除Eclipse java中XML文件中的注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 05:56