NAME
StripHtmlTags — Strip HTML/XML tags from a string.
SYNOPSIS
StripHtmlTags StringVariable
DESCRIPTION
Return Value
String with the tags removed.
Arguments
StringVariableA string value or variable name prefixed by @.
More Info
This command is useful for when you have documentation with tags in it that you would also like to print as plaintext.

An start tag is < followed by one or more characters, followed by >.

A end tag is <, followed by forward slash, followed by one or more characters, followed by >.

An empty tag is <, followed by one or more characters, optionally followed by >.


For information regarding exceptions / errors, see here.
EXAMPLES
% StripHtmlTags {You can find the documentation at <a ref="somepage.html">somepage.html</a>.}
You can find the documentation at somepage.html.
SEE ALSO
regsub
KEYWORDS
conversion, html, string, transform