当前位置:   article > 正文

ES字符串操作:遍历、比较、截取、补全..._es 7.17 怎么预遍历查询数据

es 7.17 怎么预遍历查询数据

1.确定一个字符串是否包含在另一个字符串中

let s = 'Hello world!';
 
s.startsWith('Hello') // true
s.endsWith('!') // true
s.includes('o') // true
  • 1
  • 2
  • 3
  • 4
  • 5

这三个方法都支持第二个参数,表示开始搜索的位置。

  let s = 'Hello world!';
     
    s.startsWith('world', 6) // true
    s.endsWith('Hello', 5) // true
    s.includes('Hello', 6) // false
  • 1
  • 2
  • 3
  • 4
  • 5

上面代码表示,使用第二个参数n时,endsWith的行为与其他两个方法有所不同。它针对前n个字符,而其他两个方法针对从第n个位置直到字符串结束。

2.重复字符串

repeat方法返回一个新字符串,表示将原字符串重复n次。

 'x'.repeat(3) // "xxx"
 'hello'.repeat(2) // "hellohello"
 'na'.repeat(0) // ""
  • 1
  • 2
  • 3

3.补全字符串

如果某个字符串不够指定长度,会在头部或尾部补全。padStart()用于头部补全,padEnd()用于尾部补全。

如果用来补全的字符串与原字符串,两者的长度之和超过了指定的最小长度,则会截去超出位数的补全字符串。

'abc'.padStart(10, '0123456789')
// '0123456abc'
  • 1
  • 2

padStart的常见用途是为数值补全指定位数。下面代码生成 10 位的数值字符串。

 '1'.padStart(10, '0') // "0000000001"
 '12'.padStart(10, '0') // "0000000012"
'123456'.padStart(10, '0') // "0000123456"
  • 1
  • 2
  • 3

另一个用途是提示字符串格式。

'12'.padStart(10, 'YYYY-MM-DD') // "YYYY-MM-12"
'09-12'.padStart(10, 'YYYY-MM-DD') // "YYYY-09-12"
  • 1
  • 2

4.截取字符串

substring(start,end) 用法:
substring(start,end) 用数学表达式表达区间的话就是截取[start,end);
substring(start) 没有end相当于[start,最后一个字符]

let str = 'Hello world';
let use1 = str.substring(0, 3);
console.log(use1); // Hel
let use2 = str.substring(3,0);
console.log(use2); // hel
let use3 = str.substring(2);
console.log(use3); // llo world
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

5. 截取指定位置和指定长度的字符串

substr(start,length) 用法:
substr(start,length) -> 截取的字符串区间为:[start,start+length)->从start开始,算上start数length个字符串;
substr(start) -> 截取的字符串区间为:[start,最后一个字符]

 let str = 'Hello world';
 console.log(str.substr(1,2)) // el
 console.log(str.substr(3)) // lo world
  • 1
  • 2
  • 3

indexOf(char,index)lastIndexOf(char,index)

char:是你要找的那个字符,index:是从哪个字符的位置序号开始找(没有则在indexOf中是最左边的字符,在lastIndexOf中是最右边的字符);
indexOf是从左往右搜索,而lastIndexOf是从右往左搜索;
它们的返回值都是搜到char所在的位置序号,如果没搜到,返回-1
如果index为负数,那么在indexOf和lastIndexOf方法中,-1代表的是最后一个字符

let str = 'good';
  console.log(str.indexOf('o')); // 1
  console.log(str.lastIndexOf('o')); // 2
  • 1
  • 2
  • 3

charAt(index)charCodeAt(index)at(index) (es6属性)

charAt(index)返回index位置的字符
charCodeAt(index)返回index位置的字符Unicode码
charAt(index)不能识别大于0xFFFF的字符,这时候可以用at()来识别

  var str = 'abc'
  str.charAt(0) // a
  str.charCodeAt(0) // 97
  • 1
  • 2
  • 3

6.截取字符串

slice(start,end) 用法:
slice的用法和substring的用法基本一样,只是区别在于:

slice(start,end) -> start是不能大于end的,否则返回空字符串;
slice可以接受参数是负数,如果是负数的话,规则将按照:字符串的长度和赋值相加,替换掉这个值。举例如下:

let str = 'abcdefg' // length = 7
str.slice(1,-4) // bc  -> str.slice(1,7-4) -> str.slice(1,3)
  • 1
  • 2

7.数组转字符串

datas.join(',') //变成字符串后,以逗号分隔

8.字符串转数组

data.split(',') //字符串按逗号分隔成数组

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/132624
推荐阅读
相关标签
  

闽ICP备14008679号