如何测试字符串是否与 Ruby 中的 glob 匹配?
在不访问文件系统的情况下,是否可以查看 glob "foo*"
是否与 Ruby 中的 "food"
匹配?
背景:我的一个脚本生成文件,我想进行单元测试,确保其他脚本能够使用其当前的 glob 检测此类文件。
Without hitting the filesystem, is it possible to see whether the glob "foo*"
would match "food"
in Ruby?
Background: one of my scripts produce files, and I'd like to unit test that other scripts would be able to detect such files with their current glob.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,可以使用
fnmatch
方法:Yes, it is possible using the
fnmatch
method: