📜  javascript 数组 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:40.741000             🧑  作者: Mango

代码示例6
// Match one d followed by one or more b's followed by one d
// Remember matched b's and the following d
// Ignore case

const myRe = /d(b+)(d)/i
const myArray = myRe.exec('cdbBdbsbz')