标签: intellij-idea
希望这很简单。我正在尝试将错误的编码标准转换为javadoc格式。
我想转换这一行:
*由John.Smith于2006年6月13日下午1:24:54创建
要:
* @author John Smith
任何帮助?
答案 0 :(得分:6)
我建议使用简单的正则表达式查找/替换:
查找:Created by (.*?) on .*$
Created by (.*?) on .*$
替换:@author $1
@author $1