


Detailed explanation of JavaScript string processing (String object)_Basic knowledge
Define String object
JavaScript String object is used to process text strings. The syntax for creating a String object is as follows:
Among the above three methods, only the first one uses the String constructor to strictly define a string object and returns an object. The second is to call the String function to convert the parameter str to the original string string and return it. The third method is to define a string variable, but it is still treated as a string object in JavaScript.
Run the following statements to know the difference:
alert( typeof str_object ); // Output object
alert( typeof str1 ); // Output string
alert( typeof str2 ); // Output string
String object properties
属性 | 描述 |
---|---|
constructor | 对创建该对象的函数的引用 |
length | 字符串的长度 |
prototype | 向对象添加属性和方法 |
String object method
The list of common methods of String object is as follows:
String output
alert(): Message warning box output text
document.write(): Output text to the Web page
String operations
concat(): Concatenate two or more strings
replace(): String replacement or regular match replacement
slice(): intercept a string by specifying the start and end positions
split(): Split the string into a string array
substr(): intercept the string according to the starting position and length
substring(): intercept the string
String conversion
toLowerCase(): Convert the string to lowercase
toUpperCase(): Convert the string to uppercase
fromCharCode(): Convert one or more Unicode values to a string
String search
charAt(): Get the character at the specified position
charCodeAt(): Get the Unicode encoding of the character at the specified position
indexOf(): Calculate the position where a specified string first appears in the string
lastIndexOf(): Calculate the position where a specified string first appears in the string
HTML tag class
bold(): Get the character at the specified position
fontcolor(): Display the string according to the specified color
fontsize(): Display the string according to the specified size
italics(): Display the string in italics
link(): Add a hyperlink to a string
strike(): Add strikethrough to the string
sub(): Display the string as a subscript
sup(): Display the string as superscript

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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



How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

Converting strings to floating point numbers in PHP is a common requirement during the development process. For example, the amount field read from the database is of string type and needs to be converted into floating point numbers for numerical calculations. In this article, we will introduce the best practices for converting strings to floating point numbers in PHP and give specific code examples. First of all, we need to make it clear that there are two main ways to convert strings to floating point numbers in PHP: using (float) type conversion or using (floatval) function. Below we will introduce these two

In Go language, string escape uses backslash (\`) plus special characters to represent special characters, such as newline character (\n). Anti-escaping uses backticks (\`) to remove escaped characters and restore their original characters, such as \n representing the actual newline character. Practical cases demonstrate the application of escaping, anti-escaping and anti-escaping in file reading.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

As a modern programming language, Go language provides powerful regular expressions and string processing functions, allowing developers to process string data more efficiently. It is very important for developers to master regular expressions and string processing in Go language. This article will introduce in detail the basic concepts and usage of regular expressions in Go language, and how to use Go language to process strings. 1. Regular expressions Regular expressions are a tool used to describe string patterns. They can easily implement operations such as string matching, search, and replacement.
