js字符串分割处理的几种方法(6种)

作者:傲娇味的草莓 时间:2024-11-21 13:10:55 

前端开发中,字符串处理是比较常见的,笔者在最近复习的过程中也把它整理了出来。

首先,先来看看js截取三姐妹substring()、subsstr()、slice()

1、slice(start, end)

大姐slice()、从start开始,到end结束,开始的位置从0不是1,不包括end,支持数组分割,支持负数,返回数组

let test = 'hello world!'
   console.log(test.length)

console.log(test.slice(1, 9))
   console.log(test.slice(6))
   console.log(test.slice(9, 1))
   console.log(test.slice(-2))
   console.log(test.slice(0, -2))
   console.log(test.slice(-4, -2))
   console.log(test.slice(-2, 4))

js字符串分割处理的几种方法(6种)

总结

①第一个参数比第二个参数大,结果返回空字符串

②传入参数是负数,slice()会先做运算 test.length + 负数参数。

2、substr(start, length)

二姐substr()、从start开始,返回length长度字符,开始的位置从0不是1,支持负数,不支持数组

let test = 'hello world!'
   console.log(test.length)

console.log(test.substr(1, 9))
   console.log(test.substr(6))
   console.log(test.substr(9, 9))
   console.log(test.substr(20))
   console.log(test.substr(-2))
   console.log(test.substr(-8, 4))
   console.log(test.substr(-8, 0))
   console.log(test.substr(-8, -4))
   console.log(test.substr(-20))

js字符串分割处理的几种方法(6种)

总结

①传入参数超过length返回空字符串

②传入负数,则从字符串的尾部开始算起始位置,-1指最后一个字符,-2指倒数第二个字符;当传入的第一个参数是负数且它的绝对值超过length,这个负数转化为0,当传入的第二个参数是负数,等价于0,截取0个字符,返回空字符串。

3、substring(start, stop)

三姐substring()、不接受负数,从 start 开始,不包括stop,开始的位置从0不是1,不支持数组

let test = 'hello world!'
   console.log(test.length)

console.log(test.substring(1, 9))
   console.log(test.substring(6))
   console.log(test.substring(9, 9))
   console.log(test.substring(20))
   console.log(test.substring(-2))
   console.log(test.substring(-8, 4))
   console.log(test.substring(-8, 0))
   console.log(test.substring(-8, -4))
   console.log(test.substring(-20))

js字符串分割处理的几种方法(6种)

总结

①第二个参数==第一个参数,返回空字符串

②传入两个参数,不管在第一还是第二位置,都会将小的参数作为第一个参数,较大的作为第二个参数

③任何一个参数为负数或者NaN的时候,自动将其转换为0

④任何一个参数大于length,按照length处理

js字符串截取三姐妹,都不会对原始的字符串进行修改,而是返回新的子集。但是三姐妹各自有各自的个性,面对同一种参数处理的方式都是不一样的。

4、split(separator, length)

字符按照字符串或正则分割,输出一个数组,length表示返回的长度,不支持数组;

//以空格为分隔符输出数组
   var str = '123 abc 1 2 3 a b c '
   var arr = str.split(' ')
   console.log(arr)

js字符串分割处理的几种方法(6种)

var str = '123 abc 1 2 3 a b c'
   var arr = str.split(' ', 4)
   //第二个参数表示返回数组的最大长度!注意不是原来字符串的,是新输出的数组的
   console.log(arr)

js字符串分割处理的几种方法(6种)

5、join(separator)

将数组合并成字符串,用 separator隔离,不支持字符串

var a = ['I', 'am', 'a', 'girl', '英文名', '是', 'gaby']
   var arr = a.join(',')
   console.log(arr)

js字符串分割处理的几种方法(6种)

6、splice(start, length, …args)

数组操作函数,增删改查,不支持字符串,返回数组,从 start开始,删除的length长度,并按args参数个数添加到 start位置

//删,第一个参数为第一项位置,第二个参数为要删除几个 0数起
//array.splice(index,num),返回值为删除内容,array为结果值
   var arr = ['a', 'b', 'c', 'd', 'e', 'f']
   console.log(arr.splice(0, 4))
   console.log(arr)

js字符串分割处理的几种方法(6种)

//增,第一个参数(插入位置),第二个参数(0),第三个参数(插入的项)
//array.splice(index,0,insertValue),返回值为空数组,array值为最终结果值
   var arr = ['a', 'b', 'c', 'd', 'e', 'f']
   console.log(arr.splice(2, 0, 'insert'))
   console.log(arr)

js字符串分割处理的几种方法(6种)

//改 第一个参数(起始位置),第二个参数(删除的项数),第三个参数(插入任意数量的项)
//array.splice(index,num,insertValue),返回值为删除内容,array为结果值
   var arr = ['a', 'b', 'c', 'd', 'e', 'f']
   console.log(arr.splice(2, 1, 'delete'))
   console.log(arr)

js字符串分割处理的几种方法(6种)

来源:https://blog.csdn.net/weixin_45709829/article/details/123810150

标签:js,字符串,分割
0
投稿

猜你喜欢

  • python pygame模块编写飞机大战

    2021-06-30 23:53:48
  • Python实现自动添加脚本头信息的示例代码

    2022-07-02 18:12:42
  • 请不要重复犯我在学习Python和Linux系统上的错误

    2023-05-05 05:01:31
  • 浅析JS原始值和引用值问题

    2024-04-28 09:33:17
  • 用ReactJS和Python的Flask框架编写留言板的代码示例

    2021-09-29 07:33:14
  • 如何基于python对接钉钉并获取access_token

    2023-11-27 04:25:07
  • JavaScript中clientWidth,offsetWidth,scrollWidth的区别

    2024-04-22 22:24:59
  • python绘制直方图的方法

    2021-08-20 14:59:32
  • 超半数中文网页一年内将“消失”

    2008-03-08 12:49:00
  • django认证系统 Authentication使用详解

    2021-10-02 19:05:07
  • php实现在服务器端调整图片大小的方法

    2024-05-13 09:25:46
  • python实现从字符串中找出字符1的位置以及个数的方法

    2023-06-13 20:36:10
  • 用tensorflow搭建CNN的方法

    2021-05-29 08:51:17
  • python使用xlsx和pandas处理Excel表格的操作步骤

    2021-05-19 02:30:20
  • 分享jQuery的3种常见事件监听方式

    2024-02-23 10:21:35
  • php自动获取字符串编码函数mb_detect_encoding

    2023-09-12 03:32:11
  • JS的千分位算法实现思路

    2023-08-23 22:40:32
  • python方向键控制上下左右代码

    2022-01-27 01:44:22
  • SQL bool盲注和时间盲注详解

    2024-01-21 23:42:52
  • 解决python replace函数替换无效问题

    2022-05-20 18:51:57
  • asp之家 网络编程 m.aspxhome.com