SyntaxFix
Write A Post
Hire A Developer
Questions
this:
(<.+?> | )
will match any tag or
string regex = @"(<.+?>| )"; var x = Regex.Replace(originalString, regex, "").Trim();
then x = hello
hello