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 use substr to intercept strings in javascript language

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 "how to intercept strings with substr in javascript language", so the editor summarizes the following contents, detailed contents, clear steps, and certain reference value. I hope you can get something after reading this article. Let's take a look at this article "how to intercept strings with substr in javascript language".

Description

1. Extract a specified number of characters from the string starting with the start subscript.

2. The string of specified length (N2) is intercepted from the specified position (N1). The second parameter is to intercept several strings.

Grammar

StringObject.substr (start,length)

Return value

Returns a new string.

Example

Let str = 'abcde';let re = str.slice (1, 3); / / output: bc// is truncated from index value 1 to 3, but note that the character in the end position cannot be taken, and the previous let re = str.substring (1) can be obtained. / / output: bcde// is intercepted from index value 1 to the end. Note that the character at the end position cannot be obtained. If there is only one parameter, it will be taken all the way from this index value position to the last let re = str.substr (1,3); / / output: bcd// will be intercepted from index value 1 and intercept 3. Note that if there is only one parameter, then intercept to the last console.log (re). The above is about the content of this article on "how to intercept strings with substr in javascript language". I believe we all have some 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