Summary of several commonly used string methods in JavaScript (must-read for beginners)

Summary of several commonly used string methods in JavaScript (must-read for beginners)

Several commonly used string methods in JavaScript

String is a read-only data.

Several commonly used string methods:

1. charAt: Get the corresponding character according to the specified subscript;


2. charCodeAt: Get the Asker code corresponding to the character according to the specified subscript; (there is an ASCII comparison table at the bottom)


ps: Get the characters through the Ask code;


3. substring: intercept the string;


4. substr: intercept string;


5. slice: intercept the string;


6. indexOf: Find the first occurrence of a character/substring in a large string. If found, return the index. If not found, return -1.


7. lastIndexOf: Find the last occurrence of a character/substring in a large string


8. split: split a string into an array using the specified delimiter;


9. replace: replace a character/string in a string;


10. toupperCase is uppercase, tolowerCase is lowercase


11. trim: remove the blank characters on both sides of the string;


ACSII comparison table:


Summarize

This concludes this article on the summary of several commonly used string methods in JavaScript. For more relevant JavaScript string method content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of 28 common JavaScript string methods and usage tips
  • Java method to convert Date type field into json string
  • Three Ways to Find the Longest Word in a String in JavaScript (Recommended)
  • A simple way to convert JavaScript strings to numbers
  • Summary of Common Operation Methods of JavaScript String Processing
  • Detailed explanation of Javascript string methods

<<:  MySQL 4G memory server configuration optimization

>>:  How to build docker+jenkins+node.js automated deployment environment from scratch

Recommend

Detailed explanation of fs module and Path module methods in Node.js

Overview: The filesystem module is a simple wrapp...

How to set underline in HTML? How to underline text in HTML

Underlining in HTML used to be a matter of enclos...

How to modify iTunes backup path under Windows

0. Preparation: • Close iTunes • Kill the service...

Web page text design should be like smart girls wearing clothes

<br />"There are no ugly women in the w...

Analyze how to automatically generate Vue component documentation

Table of contents 1. Current situation 2. Communi...

What we can learn from Google's new UI (pictures and text)

The most significant website change in 2011 was Go...

MySQL advanced learning index advantages and disadvantages and rules of use

1. Advantages and Disadvantages of Indexes Advant...

Detailed example of clearing tablespace fragmentation in MySQL

Detailed example of clearing tablespace fragmenta...

Solution for Nginx installation without generating sbin directory

Error description: 1. After installing Nginx (1.1...

How to install MySQL 8.0 and log in to MySQL on MacOS

Follow the official tutorial, download the instal...

How to find and delete duplicate rows in MySQL

Table of contents 1. How to find duplicate rows 2...

Learn asynchronous programming in nodejs in one article

Table of Contents Introduction Synchronous Asynch...

Teach you 10 ways to center horizontally and vertically in CSS (summary)

A must-have for interviews, you will definitely u...

How to allow remote connection in MySql

How to allow remote connection in MySql To achiev...