1

Hopefully this is an easy one. I'm trying to convert bad coding standards to javadoc format.

I want to convert this line:

* Created by John.Smith on Jun 13, 2006 at 1:24:54 PM

To:

* @author John Smith

Any help?

1 Answer 1

7

I would suggest a plain regular expression find/replace:

Find: Created by (.*?) on .*$

Replace: @author $1

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.