String是否匹配glob模式

时间:2016-12-13 00:58:40

标签: javascript regex wildcard glob

我有一系列路径,让我们说:

/Users/alansouza/workspace/project/src/js/components/chart/Graph.js

此外,我在配置文件中有一个条目,其中包含通配符(glob)格式的此路径的其他属性,如:

{
  '**/*.js': {
    runBabel: true
  }
}

问题:是否有一种简单的方法来验证路径是否与通配符表达式匹配?

例如:

const matches = Glob.matches(
  '**/*.js',
  '/Users/alansouza/workspace/project/src/js/components/chart/Graph.js'
);

if (matches) {
  //do something
}

仅供参考:我使用https://github.com/isaacs/node-glob

2 个答案:

答案 0 :(得分:6)

您可以将glob转换为带有节点glob-to-regex的正则表达式,然后针对正则表达式验证路径字符串。
https://www.npmjs.com/package/glob-to-regexp

看起来node glob是另一种选择。
https://github.com/isaacs/node-glob

节点有自己的glob实现
https://github.com/isaacs/minimatch

我的第一个想法是看看phpjs是否实现了一个glob函数,但看起来它们没有:(
http://locutus.io/php/

答案 1 :(得分:1)

由于@chiliNUT在评论中提出了理论,minimatch有这种行为:

minimatch("file.js", "**/*.js") // true/false
minimatch.match(["file1.js", "file2.js"], "**/*.js") // array of matches