Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to replace characters in javascript string

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

Most people do not understand the knowledge points of this article "javascript string how to replace characters", so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "javascript string how to replace characters" article.

In javascript, you can use the replace () method of the String object to replace characters in a string, with the syntax "str.replace (" string to be replaced "," new string ") or" str.replace (/ string / g to be replaced, "" new string ").

The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.

Javascript string replacement character

Replacing all strings in js can be done in the following ways:

Two kinds of differences: regular & conventional

Str.replace ("string to be replaced", "new string") str.replace (/ string to be replaced / g, "new string")

Example 1:

Yyyy-MM-dd-hh-mm-ss ".replace ("-"," / ")

The results are as follows:

"yyyy/MM-dd-hh-mm-ss"

Example 2:

"yyyy-MM-dd-hh-mm-ss" .replace (/-/ g, "/")

The results are as follows:

"yyyy/MM/dd/hh/mm/ss"

To sum up:

Regular substitution will only replace the characters that match for the first time, and regular replacement can replace all of them.

Description: JavaScript replace () method

The eplace () method is used to replace some characters in a string with other characters, or to replace a substring that matches a regular expression.

Grammar

StringObject.replace (regexp/substr,replacement) parameter describes regexp/substr

Necessary. A RegExp object that specifies the substring or the schema to replace.

Note that if the value is a string, it is treated as an immediate amount of text pattern to retrieve, rather than being first converted to a RegExp object.

Replacement is required. A string value. Specifies the function that replaces the text or generates the alternate text.

Return value

A new string is obtained after replacing the first match or all matches of regexp with replacement.

The above is about the content of this article on "how to replace characters in javascript strings". I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report