Home  >  Article  >  Web Front-end  >  js trim function to delete spaces at both ends

js trim function to delete spaces at both ends

小云云
小云云Original
2018-02-11 09:29:461867browse

This article mainly introduces to you the function of deleting spaces at both ends of the js custom trim function, and analyzes the related operation skills of javascript based on regular replacement to implement similar trim functions to delete spaces at both ends of the string. I hope it can help you. .

Compatible with IE lower version browsers and some other lower version script browsers.

There is no trim function in js


//删除左右两端的空格
function trim(str){
 return str.replace(/(^\s*)|(\s*$)/g, "");
}
//删除左边的空格
function ltrim(str){
 return str.replace(/(^\s*)/g,"");
}
//删除右边的空格
function rtrim(str){
 return str.replace(/(\s*$)/g,"");
}

or extended String type attribute


String.prototype.trim = function()
{
 return this.replace(/(^\s*)|(\s*$)/g, "");
}
var str = document.getElementById("test").value;
alert( str.trim() );

Or simply give up using js and use jQuer’s$.trim(str)


var str = $("#test").val();
alert( $.trim(str) );

Related recommendations:

php trim function ltrim function the difference between rtrim function

trim function implementation of trim function in php Code

Implementation of trim function code in php_PHP tutorial

The above is the detailed content of js trim function to delete spaces at both ends. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn