regex
Java Regex – Regular Expressions
16 Java Regex View more OpenOffice presentations from wayn.
Using mod_rewrite (apache module) URL rewriting – For enforcing single URL for website home
I used apache rewrite module while making home page of our main website accessible through one link only which was required for search engine optimization. Generally you can access any website in following ways: 1. Go to http://www.abc.com 2. Go to http://abc.com 3. Go to http://abc.com/index.html 4. Go to http://www.abc.com/index.html Essentially these all links above [...]
Online Regular Expression testing tool (Free) – RegExr
Few days ago I tried to put some of the useful regular expressions for validations in a post which can be used for form input validations in javascript. You can also write non-regular expression to check matching patterns in Stings in your project. Here is a tool which will let you test and help you [...]
Regular Expression Validations – javascript
Regular expression can be used efficiently to validate inputs from user and as regex is widely supported in many languages, it can also be used in javascript. Below are some regular expressions to test few types of input from user in javascript. 1. Date (yyyy-mm-dd) var regexp = /(19|20)[0-9]{2}[\- \/.](0[1-9]|1[012])[\- \/.](0[1-9]|[12][0-9]|3[01])/; regexp.test(’string_to_test’); 2. [...]
