var str="I love antzone ,this is animate";
var reg=/an/;
console.log(reg.exec(str));//序号是0,index,input不是0,1,2
// ["an", index: 7, input: "I love antzone ,this is animate"]
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
Array是可以用非數字做index的. js是這樣的習慣就好了.