Removes specified tag from the provided HTML string.

Namespace: MonoSoftware.Web
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public static string RemoveHtmlTag(
	string value,
	string removeTag
)
Visual Basic
Public Shared Function RemoveHtmlTag ( 
	value As String,
	removeTag As String
) As String
Visual C++
public:
static String^ RemoveHtmlTag(
	String^ value, 
	String^ removeTag
)
F#
static member RemoveHtmlTag : 
        value : string * 
        removeTag : string -> string 

Parameters

value
Type: System..::..String
String HTML value to strip tags from
removeTag
Type: System..::..String
Tag to remove

Return Value

Type: String
Parsed HTML string without tags

See Also