String.prototype.startsWith = function (startStr) { var d = startStr.length; return (d >= 0 && this.indexOf(startStr) == 0) }
String.prototype.endsWith = function (endStr) { var d = this.length – endStr.length; return (d >= 0 && this.lastIndexOf(endStr) == d) }
String.prototype.LTrim = function()
{
return this.replace(/(^s*)/g, “”);
}
String.prototype.Rtrim = function()
{
return this.replace(/(s*$)/g, “”);
}
String.prototype.Trim = function()
{
return this.replace(/(^s*)|(s*$)/g, “”);
}
String.prototype.Left = function(len)
{
if(isNaN(len)||len==null)
{
len = this.length;
}
else
{
if(parseInt(len)<0||parseInt(len)>this.length)
{
len = this.length;
}
}
return this.substr(0,len);
}
String.prototype.Right = function(len)
{
if(isNaN(len)||len==null)
{
len = this.length;
}
转载于:https://www.cnblogs.com/ziranquliu/p/5114058.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/109181.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...