Tag Archives: Regular Expressions

Developing simple Windows 7 Gadget – Part 1

Gadgets are simple and lightweight applications, which can be developed using HTML, Javascript and CSS. Gadgets can also include Image files. In Windows Vista, we can create Gadgets by zipping the files, and rename the it with .Gadget extension. In … Continue reading

Posted in Javascript, Miscellaneous, Windows 7 | Tagged , , , , , | 1 Comment

How to validate email addess in Windows Forms

Today I want to add validation for email address in a Windows Forms application. I searched google, but didn’t got any simple solution. Then I tried with ASP.Net regex validation control and took the validation expression from it used in … Continue reading

Posted in .Net, .Net 3.0 / 3.5 | Tagged , , , , | Leave a comment

Regular expression to remove HTML tags in VB.Net

Some time we may need to strip all the HTML tags from HTML files, like if we are doing some web scrapping. Here is simple Regular expression which will remove all the HTML Tags.

Posted in .Net | Tagged , , , | Leave a comment