i want to set validation rule for company names which should start with character and it can contain numbers and special characters..
For example:
360 Angel - should not be allowed
Angel 360 - Allowed
Javascript regular expressions should help
Documentation:
http://www.javascriptkit.com/javatutors/redev3.shtml
Simple example:
var str = "360 Angel";
/^[a-zA-Z].*/.test(str); // return false