2005-12-01

New article on the Blue River by Pat Dorsey


Pat Dorsey has a new article in the Feb 2006 issue of Fly Fisherman Magazine. It is a great article with incredible detail. Its a keeper.

Simple regex to strip HTML tags

It may not be perfect but it works for me:

string stripped = Regex.Replace(textBox1.Text,@"<(.\n)*?>",string.Empty);

Here is the original article from Roy Osherove' blog