var testReg = /^windows (?=95)95$/
var testStr = 'windows 95'
这样match出的结果是: windows 95
但如果 testStr = 'windows 9595'这样match出的结果 null这是为什么??
相关分类