编程语言
首页 > 编程语言> > JavaScript Math RegExp

JavaScript Math RegExp

作者:互联网

声明

该文部分代码和内容节选自菜鸟教程,仅用作个人学习,特此声明

链接https://www.runoob.com/

JavaScript Math

仅做补充了解知识,看看下边别人写的笔记,还挺有意思的

JavaScript Math(算数)对象 | 菜鸟教程 (runoob.com)


JavaScript RegExp

JavaScript RegExp 对象的参考手册

1、什么是正则表达式?

正则表达式描述了字符的模式对象。

检索某个文本时,可以使用一种模式来描述要检索的内容。RegExp 就是这种模式。

简单的模式可以是一个单独的字符。

更复杂的模式包括了更多的字符,并可用于解析、格式检查、替换等等。

可以规定字符串中的检索位置,以及要检索的字符类型,等等。

2、正则语法

var patt=new RegExp(pattern,modifiers);

//或更简单的方法

var patt=/pattern/modifiers;

3、正则方法之检索

3.1 test() 方法

test() 方法搜索字符串指定的值,根据结果并返回真或假。

**例如:下面的示例是从字符串中搜索字符 "e" **

var patt1=new RegExp("e");
document.write(patt1.test("The best things in life are free"));		//true

当使用构造函数创造正则对象时,需要常规的字符转义规则(在前面加反斜杠 \)

\w 是查找数字、字母及下划线。

var str = 'runoob';
var patt1 = new RegExp('\\w', 'g'); // 有转义作为正则表达式处理
var patt2 = new RegExp('\w', 'g');  // 无转义作为字符串处理
var patt3 =/\w/g;  // 与 patt1 效果相同
document.write(patt1.test(str)) //输出 true
document.write("<br>") 
document.write(patt2.test(str)) //输出 false
document.write("<br>") 
document.write(patt3.test(str)) //输出 true

3.2 exec() 方法

exec() 方法检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null。

例如:下面的示例是从字符串中搜索字符 "e"

var patt1=new RegExp("e");
document.write(patt1.exec("The best things in life are free"));		//e

标签:JavaScript,write,str,patt1,var,RegExp,document,Math
来源: https://www.cnblogs.com/xypersonal/p/16248628.html