To jan or anyone who's good with C#
How can add this function to remove
html markup:
- Code: Select all
string strResult = Regex.Replace(strInput,@"<(.|\n)*?>",string.Empty);
To these functions which finds the matches:
- Code: Select all
public Match find(string reg)
{
Regex r = new Regex(reg);
Match m = r.Match(output);
return m;
}
public MatchCollection find2(string reg)
{
Regex r = new Regex(reg);
MatchCollection m = r.Matches(output);
return m;
}