We inherited a SQL Server database and one of the tables has a nvarchar(4000) column that contains some html markup tags (see example below)
<ol type="1">
Enter the following data:
<li>Client's first and last name (middle name optional).
<li>Date of birth in mm/dd/yyyy format.
<li>Gender (required).
<li>Date of ketogenic diet initiation (optional).
<li>Date that diet is discontinued (optional).
<li>Check the "diet discontiued" box when diet is ended.
<li>Enter the client's e-mail address (optional).
</ol>
I would like to just replace the <ol> tags with a number or something but not sure how to do that. Any ideas? Thanks.