C# equivalent for strip_tags() in PHP
There’s a rather pretty way to use something like PHP strip_tags() function in C# just using regular expresion
using System.Text.RegularExpressions;
#....
Regex regHtml = new System.Text.RegularExpressions.Regex("<[^>]*>");
string s = regHtml.Replace(InputString,"");

Azure.RequestFailedException when start App in Visual Studio
Determine the first and last days of a quarter with Day.js
Login as another user in SharePoint 2019 on-premises site in Chrome