码迷,mamicode.com
首页 > 其他好文 > 详细

正则表达式中match和exec, test

时间:2020-06-13 19:03:06      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:fine   match   cts   表达式   返回   false   oda   efi   ini   

// test
// 判断字符串是否满足某个匹配模式,满足的话,返回true,否则,返回false
let reg = /^a/
let str = ‘123abc‘

console.log(reg.test(str)) //false

// exec
// 用于检索字符串中的正则表达式的匹配。该函数返回一个数组,其中存放匹配的结果
// 如果未找到匹配,则返回值为null

let reg1 = /^a/

let str1 = ‘abc123abc‘

console.log(reg1.exec(str1)) //[ ‘a‘, index: 0, input: ‘abc123abc‘, groups: undefined ]

// match
// 也是用于匹配,分全局匹配和非全局匹配
// 非全局
let str3 =
  ‘Today is the 186th day of 2018,I must finish these 2 projects within 21 days.‘
let result1 = str3.match(/\d+/)
console.log(result1) 
// 结果 
// [
//   ‘186‘,
//   index: 13,
//   input: ‘Today is the 186th day of 2018,I must finish these 2 projects within 21 days.‘,
//   groups: undefined
// ]

// 全局
let str4 =
  ‘Today is the 186th day of 2018,I must finish these 2 projects within 21 days.‘
let result2 = str3.match(/\d+/g)
console.log(result2) 
// 结果 [ ‘186‘, ‘2018‘, ‘2‘, ‘21‘ ]

  

正则表达式中match和exec, test

标签:fine   match   cts   表达式   返回   false   oda   efi   ini   

原文地址:https://www.cnblogs.com/Roxxane/p/13121331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!