Home Web Front-end JS Tutorial Three ways to remove spaces in JavaScript (regular/parameter function/trim)_javascript skills

Three ways to remove spaces in JavaScript (regular/parameter function/trim)_javascript skills

May 16, 2016 pm 05:42 PM
trim Remove spaces regular

Method 1:
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.
Copy code The code is as follows:

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
Copy the code The code is as follows:



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.
Copy code The code is as follows:

//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
Copy code The code is as follows:



JavaScript Trim Function



Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How does the String.trim() method in Java remove spaces at both ends of a string? How does the String.trim() method in Java remove spaces at both ends of a string? Nov 18, 2023 pm 02:26 PM

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

How to replace a string starting with something with php regular expression How to replace a string starting with something with php regular expression Mar 24, 2023 pm 02:57 PM

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

How to match multiple words or strings using Golang regular expression? How to match multiple words or strings using Golang regular expression? May 31, 2024 am 10:32 AM

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 use regular expressions to remove Chinese characters in php How to use regular expressions to remove Chinese characters in php Mar 03, 2023 am 10:12 AM

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.

Practical Tips: How to use the trim function in PHP to process Chinese spaces Practical Tips: How to use the trim function in PHP to process Chinese spaces Mar 27, 2024 am 11:27 AM

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.

How to use regular matching to remove html tags in php How to use regular matching to remove html tags in php Mar 21, 2023 pm 05:17 PM

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 trim() function in PHP Guide to using trim() function in PHP Feb 20, 2024 am 08:39 AM

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,

What is the function of trim function of solid state drive? What is the function of trim function of solid state drive? Nov 21, 2022 am 10:58 AM

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.

See all articles