如何使用正则表达式将多个java类中的特定模式转换为小写?
我正在寻找一种方法将整个 Java 项目的特定模式转换为小写(目标:*.jrxml)。
基本上,我想找到与以下模式匹配的所有表达式: $F{TEXT_EXPRESSION}
然后将 TEXT_EXPRESSION 字符串转换为小写,因此结果将是 $F{text_expression}。
我正在使用 Eclipse,我想在“搜索和替换”对话框中指定正则表达式。
关于我的要求有什么建议吗?
非常感谢
查尔斯
I am looking to find a way to convert a specific pattern to lower case for an entire Java project (target: *.jrxml).
Basically, I would like to find all expressions matching the following pattern:
$F{TEXT_EXPRESSION}
and then send the TEXT_EXPRESSION string to lower case, so the result would be $F{text_expression}.
I am using Eclipse and I would like to specify a regular expression in the Search and Replace dialog.
Any advice regarding my requirement?
Thank you very much
Charles
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用 perl 或 sed。使用 Perl:
I would use perl or sed. With perl: