Here you can find the source of stripFilePath(path)
function {//from w w w. jav a 2 s .co m if (path.lastIndexOf("file:///") > -1) { path = path.substring(path.lastIndexOf("file:///") + 8); } return path; }
String.prototype.strip = function() { var str = String( this ); if ( !str ) { return ""; var startidx = 0; var lastidx = str.length - 1; while( ( startidx < str.length ) && ( str.charAt( startidx ) == ' ' ) ){ startidx++; ...
String.prototype.strip = String.prototype.strip || function () { return this.replace(/^\s+|\s+$/g, ''); };
String.prototype.strip = function(){ var temp = this.rstrip() return temp.lstrip()
String.prototype.stripBr = function(){ return this.replace(/<br\s*\/?>/mg, "");
String.prototype.stripEnd = function (s) { var len = this.length-s.length; if(this.lastIndexOf(s)==len){ return this.substring(0, len); return this;
String.prototype.lstrip = function(){ return this.replace(/^\s+/,'')
String.prototype.rstrip = function () { return this.replace(/\s+$/, "") };
String.prototype.rstrip = function(){ return this.replace(/\s+$/,'')
String.prototype.rstrip = function (chars) { let regex = new RegExp(chars + "$"); return this.replace(regex, ""); };