DEV Community

Discussion on: A Beginner's Guide: Glob Patterns

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!