小码哥的IT人生

JavaScript 正则表达式

JavaScript基础 2022-04-25 01:34:13小码哥的IT人生shichen

JavaScript 正则表达式

正则表达式是构成搜索模式的字符序列。

该搜索模式可用于文本搜索和文本替换操作。

什么是正则表达式?

正则表达式是构成搜索模式(search pattern)的字符序列。

当您搜索文本中的数据时,您可使用搜索模式来描述您搜索的内容。

正则表达式可以是单字符,或者更复杂的模式。

正则表达式可用于执行所有类型的文本搜索文本替换操作。

语法

/pattern/modifiers;

示例代码:

var patt = /phpcodeweb/i;

例子解释:

/phpcodeweb/i 是一个正则表达式。

phpcodeweb 是模式(pattern)(在搜索中使用)。

i 是修饰符(把搜索修改为大小写不敏感)。

使用字符串方法

在 JavaScript 中,正则表达式常用于两个字符串方法search()replace()

search() 方法使用表达式来搜索匹配,然后返回匹配的位置。

replace() 方法返回模式被替换处修改后的字符串。

使用字符串方法 search() 来处理字符串

search() 方法也接受字符串作为搜索参数。字符串参数将被转换为正则表达式:

示例代码:

使用字符串来执行对 "phpcodeweb" 的搜索:

var str = "Visit phpcodeweb!";
var n = str.search("phpcodeweb"); 

完整实例:

<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 字符串方法</h1>
<p>在字符串中搜索“phpcodeweb”,并显示匹配的位置:</p>
<p id="demo"></p>
<script>
var str = "Visit phpcodeweb!"; 
var n = str.search("phpcodeweb");
document.getElementById("demo").innerHTML = n;
</script>
</body>
</html>

运行结果:

Javascript 字符串方法

在字符串中搜索“phpcodeweb”,并显示匹配的位置:

6

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在字符串方法 search() 中使用正则表达式

示例代码:

使用正则表达式执行搜索字符串中 "phpcodeweb" 的大小写不敏感的搜索:

var str = "Visit phpcodeweb";
var n = str.search(/phpcodeweb/i); 

n 中的结果将是:

6

完整实例:

<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 正则表达式</h1>
<p>在字符串中搜索“phpcodeweb”,并显示匹配的位置:</p>
<p id="demo"></p>
<script>
var str = "Visit phpcodeweb!"; 
var n = str.search(/phpcodeweb/i);
document.getElementById("demo").innerHTML = n;
</script>
</body>
</html>

运行结果:

Javascript 正则表达式

在字符串中搜索“phpcodeweb”,并显示匹配的位置:

6

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

使用字符串方法 replace() 处理字符串

replace() 也接受字符串作为搜索参数:

var str = "Visit Microsoft!";
var res = str.replace("Microsoft", "phpcodeweb"); 

完整实例:

<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 字符串方法</h1>
<p>请把下面的段落中的“Microsoft”替换为“phpcodeweb”:</p>
<button onclick="myFunction()">试一试</button>
<p id="demo">请访问 Microsoft!</p>
<script>
function myFunction() {
  var str = document.getElementById("demo").innerHTML; 
  var txt = str.replace("Microsoft","phpcodeweb");
  document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在字符串方法 replace() 中使用正则表达式

示例代码:

使用大小写不明的正则表达式以 phpcodeweb 来替换字符串中的 Microsoft:

var str = "Visit Microsoft!";
var res = str.replace(/microsoft/i, "phpcodeweb"); 

res 的结果将是:

Visit phpcodeweb!

完整实例:

<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 正则表达式</h1>
<p>将“microsoft”替换为以下段落中的“phpcodeweb”:</p>
<button onclick="myFunction()">试一试</button>
<p id="demo">Please visit Microsoft and Microsoft!</p>
<script>
function myFunction() {
  var str = document.getElementById("demo").innerHTML; 
  var txt = str.replace(/microsoft/i,"phpcodeweb");
  document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

您注意到了吗?

正则表达式参数(而不是字符串参数)可以在上面的方法中使用。

正则表达式可以使您的搜索更强大(例如,不区分大小写)。

正则表达式修饰符

修饰符可用于大小写不敏感的更全局的搜素:

修饰符 描述 示例
i 执行对大小写不敏感的匹配。 示例1-1
g 执行全局匹配(查找所有匹配而非在找到第一个匹配后停止)。 示例1-2
m 执行多行匹配。 示例1-3

示例1-1:

<!DOCTYPE html>
<html>
<body>
<p>请单击按钮,对字符串中的“phpcodeweb”进行不区分大小写的搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Visit phpcodeweb";
  var patt1 = /phpcodeweb/i;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例1-2

<!DOCTYPE html>
<html>
<body>
<p>请单击按钮,在字符串中对“is”进行全局搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Is this all there is?";
  var patt1 = /is/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例1-3:

<!DOCTYPE html>
<html>
<body>
<p>请单击按钮,在字符串中每行的开头对“is”进行多行搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "nIs thnis it?";
  var patt1 = /^is/m;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

正则表达式模式

括号用于查找一定范围的字符串:

表达式 描述 示例
[abc] 查找方括号之间的任何字符。 示例2-1
[0-9] 查找任何从 0 至 9 的数字。 示例2-2
(x|y) 查找由 | 分隔的任何选项。 示例2-3

示例2-1:

<!DOCTYPE html>
<html>
<body>
<p>请单击按钮,对字符串中的字符“h”进行全局搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Is this all there is?";
  var patt1 = /[h]/g; 
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例2-2:

<!DOCTYPE html>
<html>
<body>
<p>请单击按钮,字符串中的数字 1 到 4 进行全局搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "123456789";
  var patt1 = /[1-4]/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例2-3:

<!DOCTYPE html>
<html>
<body>
<p>请单击按钮,可以对任何指定的备选项进行全局搜索(红色|绿色)。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "re, green, red, green, gren, gr, blue, yellow";
  var patt1 = /(red|green)/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

元字符(Metacharacter)是拥有特殊含义的字符:

元字符 描述 示例
d 查找数字。 示例3-1
s 查找空白字符。 示例3-2
b 匹配单词边界。 示例3-2
uxxxx 查找以十六进制数 xxxx 规定的 Unicode 字符。 示例3-4

示例3-1:

<!DOCTYPE html>
<html>
<body>
<p>单击按钮,对字符串中的数字进行全局搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Give 100%!"; 
  var patt1 = /d/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例3-2:

<!DOCTYPE html>
<html>
<body>
<p>单击按钮来对字符串中的空白字符进行全局搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Is this all there is?";
  var patt1 = /s/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例3-3:

<!DOCTYPE html>
<html>
<body>
<p>单击按钮可在字符串中单词的开头或结尾处对“W3”进行全局搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Visit phpcodewebs"; 
  var patt1 = /bW3/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例3-4:

<!DOCTYPE html>
<html>
<body>
<p>单击按钮以全局搜索字符串中的十六进制数0057(W)。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Visit phpcodeweb. Hello World!"; 
  var patt1 = /u0057/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

Quantifiers 定义量词:

量词 描述 示例
n+ 匹配任何包含至少一个 n 的字符串。 示例4-1
n* 匹配任何包含零个或多个 n 的字符串。 示例4-2
n? 匹配任何包含零个或一个 n 的字符串。 示例4-3

示例4-1:

<!DOCTYPE html>
<html>
<body>
<p>单击按钮可对字符串中的至少一个“o”进行全局搜索。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Hellooo World! Hello phpcodeweb!"; 
  var patt1 = /o+/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例4-2:

<!DOCTYPE html>
<html>
<body>
<p>单击按钮以全局搜索“l”,后跟零个或多个“o”字符。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "Hellooo World! Hello phpcodeweb!"; 
  var patt1 = /lo*/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

示例4-3:

<!DOCTYPE html>
<html>
<body>
<p>单击按钮以全局搜索“1”,后跟零或一个“0”字符。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var str = "1, 100 or 1000?";
  var patt1 = /10?/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

使用 RegExp 对象

在 JavaScript 中,RegExp 对象是带有预定义属性和方法的正则表达式对象。

使用 test()

test() 是一个正则表达式方法。

它通过模式来搜索字符串,然后根据结果返回 true 或 false。

下面的例子搜索字符串中的字符 "e":

示例代码:

var patt = /e/;
patt.test("The best things in life are free!"); 

由于字符串中有一个 "e",以上代码的输出将是:

true

完整实例:

<!DOCTYPE html>
<html>
<body>
<h2>JavaScript 正则表达式</h2>
<p>检索下面段落中的一个 "e":</p>
<p id="p01">The best things in life are free!</p>
<p id="demo"></p>
<script>
text = document.getElementById("p01").innerHTML; 
document.getElementById("demo").innerHTML = /e/.test(text);
</script>
</body>
</html>

运行结果:

Javascript 正则表达式

检索下面段落中的一个 "e":

The best things in life are free!

true

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

您不必首先把正则表达式放入变量中。上面的两行可缩短为一行:

/e/.test("The best things in life are free!");

使用 exec()

exec() 方法是一个正则表达式方法。

它通过指定的模式(pattern)搜索字符串,并返回已找到的文本。

如果未找到匹配,则返回 null。

下面的例子搜索字符串中的字符 "e":

示例代码:

/e/.exec("The best things in life are free!");

由于字符串中有一个 "e",以上代码的输出将是:

e

完整实例:

<!DOCTYPE html>
<html>
<body>
<h2>JavaScript 正则表达式</h2>
<p id="demo"></p>
<script>
var obj = /e/.exec("The best things in life are free!");
document.getElementById("demo").innerHTML =
"Found " + obj[0] + " in position " + obj.index + " in the text: " + obj.input;
</script>
</body>
</html>

运行结果:

Javascript 正则表达式

Found e in position 2 in the text: The best things in life are free!

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

完整的 RegExp 参考手册

如需完整的参考手册,请访问我们完整的 JavaScript RegExp 参考手册

该参考手册包含了所有 RegExp 属性和方法的描述和实例。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024