js正则表达式中的问号几种用法在表示重复的字符后面加问号,比如+?,*?,{2,3}?可以停止匹配的贪婪模式。varpattern=w{2,3}console.log("aaaa".match(pattern)[0])*结果"aaa2023-02-21JavaScript200