JavaScript

超轻量级php框架startmvc

基于JavaScript中字符串的match与replace方法(详解)

更新时间:2020-06-17 19:48:01 作者:startmvc
1、match方法match()方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。ma

1、match方法

match() 方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。

match()方法的返回值为:存放匹配结果的数组。

2、replace方法

replace() 方法用于在字符串中用一些字符替换另一些字符,或替换一个与正则表达式匹配的子串。

replace方法的返回值为:一个新的字符串。

3、说明

以上2个方法的参数在使用正则表达式时主要添加全局g,这样才能对字符串进行全部匹配或者替换。

示例代码:


<!DOCTYPE html>
<html lang="zh">

 <head>
 <meta charset="UTF-8" />
 <title>JavaScript中字符串的match与replace方法</title>
 </head>

 <body>
 <!--注意src路径要对-->
 <script src="js/jquery-1.12.4.min.js" type="text/javascript" charset="utf-8"></script>
 <script type="text/javascript">
 var str = "1 plus 2 equal 3";
 //match方法返回值为数组
 var arr = str.match(/[0-9]/g)
 console.log(arr);

 var new_str = str.replace(/[0-9]/g, 'newstr');
 //replace方法返回值为新的字符串
 console.log(new_str)
 </script>
 </body>

</html>

控制台输出为:

以上这篇基于JavaScript中字符串的match与replace方法(详解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

js match replace 字符串