Sirko Topi - Various Artist
Labels: Nepal, Video Blog
Labels: Architecture, Software Engineering, Study Material
very good advertisement concept !! I like it !!
Labels: Gadget, Interesting, Video Blog
Labels: Software Engineering, Study Material, UML
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g,"");
}
String.prototype.ltrim = function() {
return this.replace(/^\s+/,"");
}
String.prototype.rtrim = function() {
return this.replace(/\s+$/,"");
}
// example
var myString = " hello world ";
alert(myString.trim());
function trim(stringToTrim) {
return stringToTrim.replace(/^\s+|\s+$/g,"");
}
function ltrim(stringToTrim) {
return stringToTrim.replace(/^\s+/,"");
}
function rtrim(stringToTrim) {
return stringToTrim.replace(/\s+$/,"");
}
// example
var myString = " hello world ";
alert(trim(myString));