Dec
19th | 2007

Expresso - a Great Regular Expression Tool

Posted by Amit |
Filed under .Net, C#, Utilities |

Hi all.
This one is for all you guys who are tired of pressing F5 over and over in Visual studio just to see if you got the Regular expression right.
I know I got tired of it and that’s how i found this tool.
Introducing:
Expresso the “Visual Studio of Regular Expression”
It’s a great tool that will make [...]


Continue Reading...
Dec
13th | 2007

How to use Regular Expressions

Posted by Amit |
Filed under C# |

Hi.
Ever needed to parse a web page and get all the Links in it (href’s)? the easy way is to use this regular expression to get the href:Regex r = new Regex(”href.*)”;
for those of you who don’t know this means get me something that starts with -href- and then: whatever… that’s what the -.*- is [...]


Continue Reading...

Search Dev102