public
static
string
StripTagsCharArray(
string
source)
{
char
[] array =
new
char
[source.Length];
int
arrayIndex = 0;
bool
inside =
false
;
for
(
int
i = 0; i < source.Length; i++)
{
char
let = source[i];
if
(let ==
'<'
)
{
inside =
true
;
continue
;
}
if
(let ==
'>'
)
{
inside =
false
;
continue
;
}
if
(!inside)
{
array[arrayIndex] = let;
arrayIndex++;
}
}
return
new
string
(array, 0, arrayIndex);
}
}
using
System;
using
System.Text.RegularExpressions;
class
Program
{
static
void
Main()
{
const
string
html =
"<p>There was a <b>.NET</b> programmer "
+
"and he stripped the <i>HTML</i> tags.</p>"
;
Console.WriteLine(HtmlRemoval.StripTagsCharArray(html));
}
}