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,"");

A Hidden Visual Studio Trick: Execute Selected Code with double Ctrl+E
What do to with Zone.Identifier files after importing a WSL machine and copying data
Support for SharePoint Server 2019 ends on Tuesday, July 14, 2026