There is no trim function in the 1.js itself, but you can write a
function Trim (str) {
var newstr = str.replace (/^\s*$/g, "")
Retrun Newstr;
}
2. Remove the space at both ends of the string, in VBScript you can easily use trim, LTrim, or RTrim, but in JS there is no such 3 built-in methods, need to hand-write. The following implementation method uses regular expressions and is efficient and adds these three methods to the built-in methods of the string object.
The methods written in the class are as follows: (Str.trim ();)
<script language= "javascript"
String.prototype.trim=function () {
return this.re Place (/(^\s*) | ( \s*$)/g, "");
}
String.prototype.ltrim=function () {
return This.replace (/(^\s*)/g, "");
String.prototype.rtrim=function () {
return This.replace (/(\s*$)/g, "");
</script>
can be written as a function: (Trim (str))
<script type= "text/javascript"
Function trim (str) { Delete the left and right sides of the space
return str.replace (/(^\s*) | ( \s*$)/g, "");
}
Function LTrim (str) {//delete left space
return str.replace (/(^\s*)/g, "");
function RTrim (str) {//delete the right space
return str.replace (/(\s*$)/g, "");
}
</script>