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