I have this code:
System.out.println("plant");
System.out.println("tree");
System.out.println("grass");
System.out.println("flower");
and I want to replace the content within "" with the following content, where one line contains one word in a text editor:
animal
dog
fish
elephant
What I want is:
System.out.println("animal");
System.out.println("dog");
System.out.println("fish");
System.out.println("elephant");
I've tried column editing and did not get the expected result.
Is there any trick that can do this in a simple way?
