search
HomeWeb Front-endJS TutorialThree ways to remove spaces in JavaScript (regular/parameter function/trim)_javascript skills

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 {
if (max 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
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
Java中的String.trim()方法如何去除字符串两端的空格?Java中的String.trim()方法如何去除字符串两端的空格?Nov 18, 2023 pm 02:26 PM

Java中的String类提供了许多方便的方法来处理字符串。其中,String.trim()方法是一种常用的方法,用于去除字符串两端的空格。在本文中,我们将详细介绍String.trim()方法的使用和具体的代码示例。String.trim()方法的作用是返回一个新的字符串,该字符串是原始字符串去除两端空格后的结果。该方法不会改变原始字符串的值,而是返回一个

如何用php正则替换以什么开头的字符串如何用php正则替换以什么开头的字符串Mar 24, 2023 pm 02:57 PM

PHP正则表达式是一种针对文本处理和转换的有力工具。它可以通过解析文本内容,并按照特定的模式进行替换或截取,达到有效管理文本信息的目的。其中,正则表达式的一个常见应用是替换以特定字符开头的字符串,对此,我们进行如下的讲解

如何用 Golang 正则匹配多个单词或字符串?如何用 Golang 正则匹配多个单词或字符串?May 31, 2024 am 10:32 AM

Golang正则表达式使用管道符|来匹配多个单词或字符串,将各个选项作为逻辑OR表达式分隔开来。例如:匹配"fox"或"dog":fox|dog匹配"quick"、"brown"或"lazy":(quick|brown|lazy)匹配"Go"、"Python"或"Java":Go|Python|Java匹配单词或4位邮政编码:([a-zA

php 如何用正则去除中文php 如何用正则去除中文Mar 03, 2023 am 10:12 AM

php用正则去除中文的方法:1、创建一个php示例文件;2、定义一个含有中文和英文的字符串;3、通过“preg_replace('/([\x80-\xff]*)/i','',$a);”正则方法去除查询结果中的中文字符即可。

实用技巧:如何利用PHP中的trim函数处理中文空格实用技巧:如何利用PHP中的trim函数处理中文空格Mar 27, 2024 am 11:27 AM

在PHP编程中,处理字符串时经常会遇到空格的问题,这其中包括中文空格。在实际开发中,我们常常会使用trim函数来去除字符串两端的空格,但是对于中文空格的处理相对复杂一些。本文将介绍如何利用PHP中的trim函数来处理中文空格,并提供具体的代码示例。首先,让我们了解一下中文空格的种类。在中文中,空格不仅包括常见的英文空格(space),还存在其他一些特殊的空格

php怎么利用正则匹配去掉html标签php怎么利用正则匹配去掉html标签Mar 21, 2023 pm 05:17 PM

在本文中,我们将学习如何使用PHP正则表达式删除HTML标签,并从HTML字符串中提取纯文本内容。 为了演示如何去掉HTML标记,让我们首先定义一个包含HTML标签的字符串。

PHP中trim()函数的使用指南PHP中trim()函数的使用指南Feb 20, 2024 am 08:39 AM

PHP中trim()函数的使用指南trim()函数在PHP中非常常用,用于去除字符串开头和结尾的空格或其他指定字符。本文将详细介绍trim()函数的使用方法,并提供具体的代码示例。一、函数语法trim()函数的语法如下:trim(string$str,string$character_mask=""):string该函数接受两个参数,

固态硬盘的trim功能有什么作用固态硬盘的trim功能有什么作用Nov 21, 2022 am 10:58 AM

固态硬盘的trim功能主要是优化固态硬盘,解决SSD使用后的降速与寿命的问题,通过准备数据块进行重用来提高SSD效率的功能。Trim功能是几乎所有SSD固态硬盘都具有的功能,是一个ATA指令,当系统确认SSD支持Trim在删除数据时,不向硬盘通知删除指令,只使用Volume Bitmap来记住这里的数据已经删除。从而实现更加快速的数据处理。

See all articles

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

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)