Hey @catherinecodes , I think you've missed the greedy vs lazy matching:
// greedy /".+"/.exec('a "witch" and her "broom" is one') // "witch" and her "broom" // lazy /".+?"/.exec('a "witch" and her "broom" is one') // "witch"
Nice! I didn't learn those yet
You can achieve laziness with negated set too:
/"[^"]+"/.exec('a "witch" and her "broom" is one') // "witch"
We're a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: A regex cheatsheet for all those regex haters (and lovers) 👀 VIEW POST
FULL DISCUSSIONHey @catherinecodes , I think you've missed the greedy vs lazy matching:
Nice! I didn't learn those yet
You can achieve laziness with negated set too: