struct replace: replace with fully qualified class name

I want to replace all occurances of
Logger log = Logger.getLogger($Class$.class);
with
Logger log = Logger.getLogger("fully.qualified.classname");

is this possible with structural replace?
Thank you!

0

请先登录再写评论。