例如 *?, +?, ??, {n,m}?
let sentence = "This is a test";
let wordRegex = /\b\w+?\b/g;
let words = sentence.match(wordRegex);
console.log(words); // 输出: ["This", "is", "a", "test"]