


Three ways to remove spaces in JavaScript (regular/parameter function/trim)_javascript skills
Personally think it is the best method. It uses regular expressions, which is the core principle.
Secondly, this method uses the prototype attribute of JavaScript
In fact If you don't use this attribute, you can use a function to implement it. But it is more convenient to use it this way.
Let's take a look at how this attribute is used.
Returns a reference to the prototype of the object type.
objectName.prototype
objectName parameter is the name of the object.
Description
Use the prototype property to provide a basic set of functionality for an object's class. New instances of an object "inherit" the operations assigned to the object's prototype.
For example, add a method to an Array object that returns the value of the largest element in the array. To accomplish this, declare the function, add it to Array.prototype, and use it.
function array_max( ){
var i, max = this[0];
for (i = 1; i < this.length; i )
{
if (max < this[i])
max = this[i] ;
}
return max;
}
Array.prototype.max = array_max;
var x = new Array(1, 2, 3, 4, 5, 6);
var y = x.max( );
After this code is executed, y saves the maximum value in the array x, or 6.
All JScript internal objects have a read-only prototype property. You can add functionality to a prototype as in this example, but the object cannot be assigned a different prototype. However, user-defined objects can be assigned to new prototypes.
The list of methods and properties for each internal object in this language reference indicates which ones are part of the object's prototype and which ones are not.
The following is the original code
Program code
Let's take a look at what "/s means" in Js scripts
s matches any whitespace character, including spaces, tabs, form feeds, etc. Equivalent to [fnrtv].
Please remember that it is lowercase s
Method 2:
Since the method of use is simple, I will not give an example here.
//Javascript space removal function
function LTrim(str){ //Remove the leading spaces of the string
var i;
for(i=0;i if(str.charAt(i)!=" "&&str.charAt(i)!=" ") break;
}
str = str .substring(i,str.length);
return str;
}
function RTrim(str){
var i;
for(i=str.length-1;i> =0;i--){
if(str.charAt(i)!=" "&&str.charAt(i)!=" ") break;
}
str = str.substring(0 ,i 1);
return str;
}
function Trim(str){
return LTrim(RTrim(str));
}
Method 3:
This method writes functions together and achieves different effects by passing different parameters

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The String class in Java provides many convenient methods to handle strings. Among them, the String.trim() method is a commonly used method for removing spaces at both ends of a string. In this article, we will introduce the use of String.trim() method in detail and specific code examples. The function of the String.trim() method is to return a new string, which is the result of the original string after removing the spaces at both ends. This method does not change the value of the original string, but returns a

PHP regular expressions are a powerful tool for text processing and conversion. It can effectively manage text information by parsing text content and replacing or intercepting it according to specific patterns. Among them, a common application of regular expressions is to replace strings starting with specific characters. We will explain this as follows

Golang regular expressions use the pipe character | to match multiple words or strings, separating each option as a logical OR expression. For example: matches "fox" or "dog": fox|dog matches "quick", "brown" or "lazy": (quick|brown|lazy) matches "Go", "Python" or "Java": Go|Python |Java matches words or 4-digit zip codes: ([a-zA

How to remove Chinese in PHP using regular expressions: 1. Create a PHP sample file; 2. Define a string containing Chinese and English; 3. Use "preg_replace('/([\x80-\xff]*)/i', '',$a);" The regular method can remove Chinese characters from the query results.

In PHP programming, spaces are often encountered when processing strings, including Chinese spaces. In actual development, we often use the trim function to remove spaces at both ends of a string, but the processing of Chinese spaces is relatively complicated. This article will introduce how to use the trim function in PHP to process Chinese spaces and provide specific code examples. First, let us understand the types of Chinese spaces. In Chinese, spaces include not only common English spaces (space), but also some other special spaces.

In this article, we will learn how to remove HTML tags and extract plain text content from HTML strings using PHP regular expressions. To demonstrate how to remove HTML tags, let's first define a string containing HTML tags.

Guide to using the trim() function in PHP The trim() function is very commonly used in PHP and is used to remove spaces or other specified characters at the beginning and end of a string. This article will introduce the use of trim() function in detail and provide specific code examples. 1. Function syntax The syntax of the trim() function is as follows: trim(string$str,string$character_mask=""):string This function accepts two parameters,

The trim function of the solid-state drive is mainly to optimize the solid-state drive, solve the problem of slowdown and lifespan of the SSD after use, and improve the efficiency of the SSD by preparing data blocks for reuse. The Trim function is a function that almost all SSD solid state drives have. It is an ATA command. When the system confirms that the SSD supports Trim and deletes data, it does not notify the hard disk of the deletion command and only uses the Volume Bitmap to remember that the data here has been deleted. This enables faster data processing.
