Display record contant as html list

I have a record that looks like this:

Have bachelor degree from University of Constructions, graduated from University of Technology in Construction field is a plus./n/n
Have working experience in foreign companies./n/n
Be self- driven, responsible and adaptable.

when output I want to have something like this:

<ul>
   <li>Have bachelor degree from University of Constructions, graduated from University of Technology in Construction field is a plus.</li>
   <li>Have working experience in foreign companies.</li>
   <li>Be self- driven, responsible and adaptable.</li>
</ul>

How can I do this ?

What do you mean by a “record”?

i mean database field

You could try explode()

Thanks Hash.