I have the following - really messy looking - data in my excel cell, which consists of around 100 rows of HTML Tags:
Find below two examples:
<ul class=""list-unstyled"">
<li><span title=""Website"" class=""glyphicon glyphicon-link text-gray""></span> <a href=""https://google.org/"" target=""_blank"">Website</a></li>
<li><span title=""Website"" class=""glyphicon glyphicon-link text-gray""></span> <a href=""https://www.google.com/"" target=""_blank"">Website 2</a></li>
<li><span title=""Product"" class=""glyphicon glyphicon-search text-gray""></span> <a href=""http://amazon.com"" target=""_blank"">Product</a></li>
<li><span title=""Product"" class=""glyphicon glyphicon-search text-gray""></span> <a href=""https://amazon.de/"" target=""_blank"">Product 2</a></li>
<li><span title=""Tags"" class=""glyphicon glyphicon glyphicon-tag text-gray""></span>
<small><span class=""label label-warning"">Available</span></small>
<small><span class=""label label-warning"">Country</span></small>
</li>
</ul>
or
<ul class=""list-unstyled"">
<li><span title=""Website"" class=""glyphicon glyphicon-link text-gray""></span> <a href=""https://google.org/"" target=""_blank"">Website</a></li>
<li><span title=""Website"" class=""glyphicon glyphicon-link text-gray""></span> <a href=""https://www.google.com/"" target=""_blank"">Website 2</a></li>
<li><span title=""Product"" class=""glyphicon glyphicon-search text-gray""></span> <a href=""http://amazon.com"" target=""_blank"">Product</a></li>
<li><span title=""Tags"" class=""glyphicon glyphicon glyphicon-tag text-gray""></span>
<small><span class=""label label-warning"">Not Available</span></small>
<small><span class=""label label-warning"">State</span></small>
</li>
</ul>
My goal is to create a table that looks like the following:
| Website 1 | Website 2 | Website 3 | Product 1 | Product 2 | Product 3 | Available | Country |
|---------------------|---------------------|-----------|-------------------|--------------------|-----------|---------------|---------|
| https://google.org/ | https://google.com/ | | http://amazon.com | https://amazon.de/ | | Available | Country |
| https://google.org/ | https://google.com/ | | http://amazon.com | | | Not Available | State |
I honestly have no clue how to approach this challenge.
Any suggestions from your side?