IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası

IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası (https://www.ircforumlari.net/)
-   HTML/CSS/JavaScript (https://www.ircforumlari.net/html-css-javascript/)
-   -   ltrim rtrim trim fonksiyonlarını tanımlamak (https://www.ircforumlari.net/html-css-javascript/625410-ltrim-rtrim-trim-fonksiyonlarini-tanimlamak.html)

hAte 10 Ekim 2014 03:51

ltrim rtrim trim fonksiyonlarını tanımlamak
 
String.prototype.ltrim = function (){
return this.replace(/^\s*/, "" );
}

//Function to trim the space in the right side of the string
String.prototype.rtrim = function(){
return this.replace( /\s*$/, "" );
}

//Function to trim the space in the string
String.prototype.trim = function() {
return this.rtrim().ltrim();
}


Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 18:31.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO
Copyright ©2004 - 2025 IRCForumlari.Net Sparhawk