标题:大家好,新人想问下
取消只看楼主
qidi45a
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2017-6-18
 问题点数:0 回复次数:0 
大家好,新人想问下
var sstr = "Now is the time and this is the time and that is the time";
var patt = /t\w*e/g;
var str = '';
var maAr = patt.exec(sstr);
alert(maAr[0]);//为什么一定直接写maAr辉报错,要写成maAR[0]。maAr是数组吗?
alert(maAr.index);//这里返回的是位置7,现在弄不懂maAr是什么数据类型

var sstr = "Now is the time and this is the time and that is the time";
var patt = /t\w*e/g;
var maAr;
var str = '';
while((maAr = patt.exec(sstr)) != null){      //这里的exec为什么每次只返回一个字符串给maAr,并不是一次性把所有找到的字符串赋值给maAr
str += "at " + maAr.index + " xx "+ maAr[0] + "\n";        //exec每次赋值一个字符串给maAr,直接写maAr会报错,一定要写成maAr[0],这不是数组形式吗?
            }
alert(str);
搜索更多相关主题的帖子: var the time and exec 
2017-06-18 22:33



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-478741-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.128145 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved