Search this blog

You can search for all the topics in our blog using our google custom search now.

Search the blog

Loading

Sunday, July 4, 2010

Learning regular expression step by step tutorials: Step 4


Free Microsoft MCTS 70-536 Examination Training and Preparation for Jobs and Interviews



DOT META CHARACTER
In Regular expressions, DOT or PERIOD meta character which is used most commonly. Dot meta character will match with any single character, not checking what character it is except for any new line characters(\n).

The dot will match with anything which is very convenient at the beginning when you test our regular expression with valid input. The drawback is: again dot will match with anything and give us wrong matches.

For example:

Imagine we need to check if a given number is a valid phone number. To do that we can form a regular expression like this:

\d\d\d.\d\d\d.\d\d\d\d

The reason i have given a dot is because the user might enter a phone number like this: 408 512 3625 , 408-512-6589 etc etc.

The above regular expressions works nicely for  above two formats. How ever it also matches for 408551293625,408/512/3625 etc etc.

So use it carefully.

Regards





Related Topics Links

Step 1 Learning regular expressions,


Step 2 Learning regular expressions


Step 3 Learning regular expressions
Sameer Shaik


 Video Links will be posted soon
Free Microsoft MCTS 70-536 Examination Training and Preparation for Jobs and Interviews
Tags: Microsoft MCTS exam, Learn, Tutorials, Free C#, Free Videos, Microsoft Dot Net Jobs,Microsoft Dot Net Jobs Interview, Free Training and Preparation, Jobs MCTS specialization, visual studio.net.

Thursday, July 1, 2010

Books suggested for MCTS 70-536 examination

I know you would want to make sure that you pass this exam, to be able to do that we all need good resources. I agree.

However i do not think i can suggest you to read a combination of book which can guarantee that you have prepared everything.

These are the resources you will be getting information from:

-> Microsoft .NET Framework 2.0 Application Development Foundation Training Kit, ISBN: 0-7356-2277-9


->MSDN Library


o Microsoft Press: Programming Visual C# 2005: The Language, ISBN: 0-7356-2181-0
or
o Microsoft Press: Programming Visual Basic 2005: The Language, ISBN: 0-7356-2183-7


-> Optional books:
o Microsoft Press: Programming Visual C# 2005: The Base Class Library, ISBN: 0-7356-2308-2
or
o Microsoft Press: Programming Visual Basic 2005: The Base Class Library, ISBN: 0-7356-2308-8
o Microsoft Press: Microsoft Visual C# 2005: Step By Step, ISBN: 0-7356-2129-2
or
o Microsoft Press: Microsoft Visual Basic 2005: Step By Step, ISBN: 0-7356-2131-4


These are resources that can give you complete information.

Best of Luck

Regards
Sameer Shaik