最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Trim Function in JavaScript
时间:2022-06-30 09:48:09 编辑:袖梨 来源:一聚教程网
TrimAll()
{
var objRegExp = /^(s*)$/;
// Check for all spaces
if (objRegExp.test(strValue))
{
strValue = strValue.replace(objRegExp, '');
if( strValue.length == 0)
return strValue;
}
// Check for leading & trailing spaces
objRegExp = /^(s*)([Ww]*)(s*$)/;
if (objRegExp.test(strValue))
{
//remove leading and trailing whitespace characters
strValue = strValue.replace(objRegExp, '$2');
}
return strValue;
}
{
var objRegExp = /^(s*)$/;
// Check for all spaces
if (objRegExp.test(strValue))
{
strValue = strValue.replace(objRegExp, '');
if( strValue.length == 0)
return strValue;
}
// Check for leading & trailing spaces
objRegExp = /^(s*)([Ww]*)(s*$)/;
if (objRegExp.test(strValue))
{
//remove leading and trailing whitespace characters
strValue = strValue.replace(objRegExp, '$2');
}
return strValue;
}
相关文章
- 对决剑之川诸葛玲珑角色介绍一览 09-20
- 原神奈芙尔角色星级介绍 09-20
- 失控进化防护服获取攻略 09-20
- 失控进化冲锋枪汇总一览 09-20
- 逆战未来猎场传送玩法介绍一览 09-20
- 无限暖暖旧琴谱与即兴节拍协奏任务流程攻略 09-20