I have a csv file that contains resume in plain text. I need to convert the text field from a text to html code.
For example:
Plain text:
Head
Line2
Line3
Line4
Converted:
<p>Head</p>
<p>Line2<br />
Line3<br />
Line4</p>
Can a SQL Server function can do this? I already saw a online tool http://www.textfixer.com/html/convert-text-html.php that can do similar function, but I need to convert at least 1300 rows of resume that inside a csv file.
Thanks in advance!
head
multiple times? Can we assume you can read the csv to a temp table or to open a rowset to it? – Matt Aug 08 '16 at 21:41