I am using a powershell script to retrieve the user profile information (i.e., about me, skills...)
$usp["sps-skills"].tostring()
It is getting the required information however the data also contains the unwanted HTML components (i.e, <p>,<div>...).
I want to escape the HTML components, what would be the best way of doing it.
