我有一个包含代码块的HTML文件,该代码块由预定义的文本边界,如
@begin@
第一行
Mycode line 2
其他代码
@end@
我想运行mvn ant命令对该文件进行处理,以便@begin@到@end@之间的任何文本都应该被我拥有的多块语句所取代。像
@begin@
这是我的最终代码
@end@
感谢keshav<replaceregexp match="@begin@;(.*?)@end@;"
replace="Any Text you want"
flags="gs">
<fileset dir="${project.build.directory}" includes="*.*"/>
以上代码将为标记替换正则表达式。