String.prototype.startsWith = function(str){ return (this.match("^"+str)==str); } String.prototype.endsWith = function(str){ return (this.match(str+"$")==str); }
Dikutip dari : http://www.tek-tips.com/faqs.cfm?fid=6620
String.prototype.startsWith = function(str){ return (this.match("^"+str)==str); } String.prototype.endsWith = function(str){ return (this.match(str+"$")==str); }
Dikutip dari : http://www.tek-tips.com/faqs.cfm?fid=6620