var matches = /(hello S+)/.exec('This is a hello world!');console.log(matches[0]);为什么结果是 hello world ! 我的理解是出 hello 's'代表空格 ’+’代表一个或多个 不是吗 查看完整描述