es6如何利用正则表达式在字符串里找到指定值,下面web建站小编给大家详细介绍一下介绍正则表达式的运用方法!
match的运用
var string = "foo", exp = /oo/; var result = string.match(exp); console.log(result); //['oo', index: 1, input: 'foo', groups: undefined]
test的运用
var string = "foo", exp = /oo/; var result = exp.test(string); console.log(result); //true
search的运用
var string = "foo", exp = /oo/; var result = string.search(exp); console.log(result); // 1,搜索不到返回-1
标签: match, search, test, 正则表达式
上面是“es6如何利用正则表达式在字符串里找到指定值”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3260.html
workflows工作流
- 一只外星甲壳虫子ComfyUI工作流
- 一张精心制作的熊岛复古地图ComfyUI工作流
- 梦幻向日葵ComfyUI工作流
- 一个迷人的女人ComfyUI工作流
- 蝴蝶兰comfyui工作流
- 一幅3D农场游戏画面ComfyUI工作流
- 丛林里坐着一尊佛像
- 一位美丽的女士在座机上讲话ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!