📅  最后修改于: 2022-03-11 14:56:40.741000             🧑  作者: Mango
// 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')