


subString() method and slice() method of String class in javascript_javascript skills
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:
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:
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.

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

AI Hentai Generator
Generate AI Hentai for free.

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

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 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? 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

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.

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 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 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? 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
