List/Grid Core Java Subscribe RSS feed of category Core Java

java-logo

Validate Image File Extension with Java Regular Expression example

In this tutorial we are going to see how to validate image file format with Java Regular Expressions. This is vary userful for example when you create an image uploader and you want ...
java-logo

Extract HTML Links with Java Regular Expression example

With this example we shall show you how to extract and process HTML links with Java Regular expression. You can follow the basic techniques in this article and learn how to process ...
java-logo

Validate HTML Tag with Java Regular Expression example

In this tutorial we are going to see how to validate HTML Tag format. In general, validating HTML with regular expressions in not the optimal method. You should use an HTML parser for ...
java-logo

Validate Date with Java Regular Expression example

In this tutorial we are going to see how to validate date format with Java Regular Expressions.The basic policy about  date of the form “dd/mm/yyyy” is that:It should ...
java-logo

Validate Time In 24 Hours Format with Java Regular Expression example

In this tutorial we are going to see how to validate 24 Hours time format with Java Regular Expressions.The basic policy about the 24 hours format is that:It should start with two ...
java-logo

Validate Time In 12 Hours Format with Java Regular Expression example

In this tutorial we are going to see how to validate 12 Hours time format with Java Regular Expressions.The basic policy about the 12 hours format is that:It should start with two ...
java-logo

Validate IP Address with Java Regular Expression example

With this example we shall show you how to validate the format of ip addresses using Java Regular Expression. The basic format of ip addresses format policy is:It must start with ...
java-logo

Validate Email Address with Java Regular Expression example

Email validation is a very frequent requirement in many applications. Basically the main policy that email format follows is that it:Has to start with characters, digits or ‘_’, ...
java-logo

How To Validate Hex Color Code With Regular Expression

In this tutorial we are going to see how to create a simple application that validates Hexadecimal Color Codes. The main policy abount Hex Color Codes denotes that it has to:Start ...
java-logo

Validate Password with Java Regular Expression example

In the previous tutorial on username validation we explained why input validation is important for your application’s security and data consistency. For our passwords we are going ...
© 2010-2012 Examples Java Code Geeks. Licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
All trademarks and registered trademarks appearing on Examples Java Code Geeks are the property of their respective owners.
Java is a trademark or registered trademark of Oracle Corporation in the United States and other countries.
Examples Java Code Geeks is not connected to Oracle Corporation and is not sponsored by Oracle Corporation.