JS 正则表达式常用方法
2024-09-29
7
1. JS 正则表达式
2. 使用字符串方法
3. 使用 RegExp 方法
1. JS 正则表达式
JS 正则表达式语法:
# JS 的正则表达式不需要使用引号包裹,PHP 需要使用引号包裹。修饰符是可选的,可写可不写/正则表达式主体/修饰符
JS 中使用正则表达式的方法比较多,可以按照使用两种类型记忆: 字符串对象方法、正则表达式对象方法
// 字符串对象方法string.search(regexp)// 正则表达式对象方法regexp.test(string)
2. 使用字符串方法
string.search(regexp)
匹配首次出现的下标
const string = 'hello world !'// 返回内容首次出现的位置(下标),没有匹配到时返回 -1const index = string.search(/world/)
string.replace(regexp, new_string)
将首次匹配到的内容进行替换
const string = 'hello world !'// 将首次匹配到的内容进行替换const result = string.replace(/world/, 'vue')
string.match(regexp)
执行正则表达式匹配
const string = 'hello world !'// 下面 result1 和 result2 结果相同// ['world', index: 6, input: 'hello world !', groups: undefined]const result1 = string.match(/world/)const result2 = /world/.exec(string)
string.matchAll(regexp)
执行正则表达式匹配,匹配字符串所有符合条件的内容
const string = 'hello world world !'const result = [...string.matchAll(/world/g)]console.log(result);
3. 使用 RegExp 方法
regexp.test(string)
用于检测一个字符串是否匹配某个模式
const string = 'hello world !'const bool = /world/.test(string)
regexp.exec(string)
执行正则表达式匹配,匹配成功时返回一个数组,匹配失败返回 null
const string = 'hello world !'// ['world', index: 6, input: 'hello world !', groups: undefined]const result = /world/.exec(string)
更新于:4天前赞一波!
相关文章
- JS 的 apply 方法
- JS 字符串和数组相互转换
- JS 数组去重的多种方法
- JS 函数中的 arguments 类数组对象
- 介绍Js简单的递归排列组合
- Node.js 软件包管理工具 (npm)
- JS 性能优化之防抖
- JS 性能优化之节流
- 常用的正则表达式(Regular Expression)大全
- 正则表达式语法速查
- 如何在 JavaScript 中使用正则表达式删除 HTML 标签?
- Nginx常用屏蔽规则 - 防止垃圾蜘蛛
- JS 数组方法 every 和 some 的区别
- uniapp 返回上一级页面并触发指定方法
- JS 数组详解【编程笔记】
- uniapp 工具类方法封装
- JS 中的 ?. 和 ??
- PHP 中的魔术方法
- 一款轻量级前端框架Avalon.Js
- flex 弹性布局常用属性
文章评论
评论问答