//去除字符串头尾空格或指定字符
String.prototype.Trim= function(c)
{
if(c==null||c=="")
{
var str= this.replace(/^/s*/, '');
var rg = //s/;
var i = str.length;
while (rg.test(str.charAt(--i)));
return str.slice(0, i + 1);
}
else
{
var rg=new RegExp("^"+c+"*");
var str= this.replace(rg, '');
rg = new RegExp(c);
var i = str.length;
while (rg.test(str.charAt(--i)));
return str.slice(0, i + 1);
}
}
//去除字符串头部空格或指定字符
String.prototype.TrimStart = function(c)
{
if(c==null||c=="")
{
var str= this.replace(/^/s*/, '');
return str;
}
else
{
var rg=new RegExp("^"+c+"*");
var str= this.replace(rg, '');
return str;
}
}
//去除字符串尾部空格或指定字符
String.prototype.trimEnd = function(c)
{
if(c==null||c=="")
{
var str= this;
var rg = //s/;
var i = str.length;
while (rg.test(str.charAt(--i)));
return str.slice(0, i + 1);
}
else
{
var str= this;
var rg = new RegExp(c);
var i = str.length;
while (rg.test(str.charAt(--i)));
return str.slice(0, i + 1);
}
}
String.prototype.trimStart = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(0,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(trimStr.length);
}
return temp;
};
String.prototype.trimEnd = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(temp.length-trimStr.length,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(0,temp.length-trimStr.length);
}
return temp;
};
String.prototype.trim = function(trimStr){
var temp = trimStr;
if(!trimStr){temp=" ";}
return this.trimStart(temp).trimEnd(temp);
};
JavaScript中Trim(),TrimStart(),TrimEnd()的实现
转载文章标签 javascript function null c 字符串 文章分类 JavaScript 前端开发

-
javascript中的trim实现
str.replace(/(^\s*)|(\s*$)/g,"")正则表达式!
JavaScript 正则表达式 ViewUI -
ES10中Object.fromEntries(),trimStart() ,trimend()的使用方法和使用场景例子
用途:将一个包含键值对的可迭代对象(如Map或数组)转换成对象。常见场景:从Map转换为对象、处理 URL 查询参数等。
javascript 开发语言 ecmascript 字符串 数组 -
es集群节点是什么
相关概念集群(cluster): 由一个或多个节点组成, 并通过集群名称与其他集群进行区分 节点(node): 单个ElasticSearch实例.ES集群中每一个节点就是一个node 索引(index): 在ES中, 索引是一组文档的集合 分片(shard): 因为ES是个分布式的搜索引擎, 所以一个索引通常都会分解成不同部分, 而这些分布在不同节点的数据就是分片. ES
es集群节点是什么 elsticsearch优化 elsticsearch集群 分片数设置 分片和副本