DEV Community

Discussion on: A Beginner's Guide: Glob Patterns

Collapse
 
clavinjune profile image
Clavin June

Isn't it regex? Or it is different?

Collapse
 
milkstarz profile image
malik • Edited

Quoting something from the post:

Something important that I want to note is that while wildcard patterns are similar to regex patterns, they are not explicitly the same for two main reasons:

  1. Globs are meant to match filenames rather than text
  2. Not all conventions are the same between them (example: * means zero or more copies of the same thing in regex)

They're not the same they have some nuances but are similar!

Collapse
 
clavinjune profile image
Clavin June

Thanks Malik! I think i missed that paragraph before!

Collapse
 
jannikwempe profile image
Jannik Wempe

Haha, i just thought something similar right before the abstract malik cited :-D

Collapse
 
clavinjune profile image
Clavin June

Yup, perhaps we need more focus when reading haha