How can i load in a varchar2 column, a text that contents returns of line?

For example the sqlloader file:

James#My car is red and
my house is big.#London
Jason#Hellow my friend!#San Francisco
Patrick#What a wonderful day!#Philadelphia

And the table is:

Name varchar2(20),
Comment varchar2(250),
City varchar2(20)



Thank you.