am developing this code using powershell. I need to be able to extract the html tags.
Invoke-WebRequest -Uri \'https://psu.box.com/shared/static/jf36ohodxnw7oe
You could replace
with actual line breaks, then tag-strip the rest completely:
$commentsPlain = $msg.description.InnerText -replace '
',[System.Environment]::NewLine -replace '<[^>]+>'
[PSCustomObject]@{
'LastUpdated' = [datetime]$msg.pubDate
'Title' = $msg.title
'Category' = $msg.category
'Author' = $msg.author
'Link' = $msg.link
'UpVotes' = $Upvote
'DownVotes' = $Downvote
'Validations' = $Validation
'WorkArounds' = $Workaround
'Comments' = $commentsPlain
'FeedbackID' = $FeedBackID
}