Home Web Front-end JS Tutorial subString() method and slice() method of String class in javascript_javascript skills

subString() method and slice() method of String class in javascript_javascript skills

May 16, 2016 pm 06:06 PM
slice substring

Section 2.8.4 of the book talks about the subString() method and slice() method in the String class. Their usage and return results are basically the same, as shown in the following example:

Copy code The code is as follows:

var strObj = new String("hello world");
alert(strObj.slice(3)); / / Output result: "ol world"
alert(strObj.subString(3)); // Output result: "ol world"
alert(strObj.slice(3, 7)); // Output result: "lo w"
alert(strObj.subString(3,7)); // Output result: "lo w"

As can be seen from the output of the above code, slice( ) method and subString() method call method and output results are exactly the same. Both methods return substrings of the string to be processed, and both accept one or two parameters. The first parameter is the substring to be obtained. The starting position of the string. The second parameter is to obtain the ending position of the substring. If the second parameter is omitted, the ending position defaults to the length of the string, and neither method changes the value of the String object itself.

Why are there two methods with exactly the same function? In fact, the two methods are not exactly the same, but they handle parameters slightly differently only when the parameters are negative.

For negative parameters, the slice() method will add the length of the string to the parameter, and the subString() method will treat it as 0, for example:
Copy code The code is as follows:

var strObj = new String("hello world");
alert(strObj.slice(-3)); // Output result: "rld"
alert(strObj.subString(-3)); // Output result: "hello world"
alert(strObj.slice(3,-4)); // Output Result: "lo w"
alert(strObj.subString(3,-4)) // Output result: "hel"

In this way, you can see slice() and subString() The main difference in approach. When there is only parameter -3, slice() returns "rld" and subString() returns "hello world". This is because for the string "hello world", slice(-3) will be converted to slice(8), and subString(-3) will be converted to subString(0). Similarly, the difference between using 3 and -4 is also obvious. The slice() method will be converted to slice(3,7), the same as the previous example, returning "low". The subString() method interprets these two parameters as subString(0,3), which is actually: subString(0,3), because subString() always uses the smaller parameter as the starting position, and the larger parameter The number is the final digit.
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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks 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 to solve the 'panic: runtime error: slice bounds out of range' error in golang? How to solve the 'panic: runtime error: slice bounds out of range' error in golang? Jun 25, 2023 pm 12:42 PM

In the Go language, we often encounter an error, namely "panic:runtimeerror:sliceboundsoutofrange" (slice out of range) error. This is because when we use slices, we usually access or operate the slice, and the access index may go out of bounds. This article will explain the basic causes of this error, how to avoid and solve it. 1. Cause of slice out-of-bounds error Slice is a reference type, which is controlled by the underlying

How to use the substring() function of the StringBuilder class in Java to intercept the substring of a string How to use the substring() function of the StringBuilder class in Java to intercept the substring of a string Jul 24, 2023 pm 12:13 PM

How does Java use the substring() function of the StringBuilder class to intercept a substring of a string? In Java, we often need to process string operations. Java's StringBuilder class provides a series of methods to facilitate us to operate strings. Among them, the substring() function can be used to intercept substrings of strings. The substring() function has two overloaded forms, namely substring(intstar

How to get a substring using String.substring() method in Java? How to get a substring using String.substring() method in Java? Nov 18, 2023 am 08:07 AM

How to get a substring using String.substring() method in Java? The String class in Java provides a very useful method substring(), which can be used to obtain the substring of a string. It allows us to select a portion of characters from a string and return it as a new string. This article will explain how to use the substring() method in Java and provide some code examples. Using the substring() method is very

How to delete slice elements in Golang How to delete slice elements in Golang Mar 22, 2023 pm 02:22 PM

A slice can be regarded as a dynamic array. It has flexible size and capacity, so it is very convenient during the development process. However, when processing slices, we often need to perform deletion operations. This article will introduce how to delete slice elements in Golang.

How to use slice in Go language? How to use slice in Go language? Jun 11, 2023 am 08:53 AM

Slice in Go language is a powerful data type that allows you to easily perform operations on arrays or slices. This article will introduce the basic concepts of slice and how to use slice in Go language. Definition and initialization of slice In the Go language, slice is used to represent a dynamic array. Unlike an array, the length of a slice is not fixed and will automatically grow or shorten based on the number of elements stored. The definition format of slice is as follows:

Use java's StringBuilder.substring() function to intercept the substring of a string Use java's StringBuilder.substring() function to intercept the substring of a string Jul 26, 2023 pm 11:45 PM

Use java's StringBuilder.substring() function to intercept a substring of a string. In Java programming, you often need to operate on strings. One of the common operations is to intercept a substring of a string. Java provides a variety of methods to achieve this function, among which the substring() function of the StringBuilder class is a simple and efficient method. StringBuilder is a class in Java for manipulating strings. It provides

Use the substring() method of the StringBuffer class to obtain the substring of part of the string. Use the substring() method of the StringBuffer class to obtain the substring of part of the string. Jul 24, 2023 pm 12:41 PM

Use the substring() method of the StringBuffer class to obtain a substring of part of a string. In Java programming, it is often necessary to process and operate strings. The StringBuffer class is a commonly used string class that provides a series of convenient methods to operate strings. Among them, the substring() method is a very commonly used method, which can be used to obtain part of the content of a string, that is, a substring. The following will introduce how to use the StringBuffer class

How to extract elements from an array using slice function? How to extract elements from an array using slice function? Nov 18, 2023 pm 01:28 PM

How to extract elements from an array using slice function? During programming, we often need to extract elements from arrays. In many programming languages, a convenient method is provided to achieve this operation, that is, using the slice function. This article will introduce in detail how to use the slice function to extract elements from an array and give specific code examples. The Slice function is a general function that can be used to extract elements from an array or slice. Its syntax is very simple, the general form is: slice(st

See all articles