如何测试字符串是否与 Ruby 中的 glob 匹配?

发布于 2024-12-01 05:24:26 字数 164 浏览 0 评论 0原文

在不访问文件系统的情况下,是否可以查看 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三岁铭 2024-12-08 05:24:26

是的,可以使用 fnmatch 方法:

File.fnmatch("foo*", "food") #=> true

Yes, it is possible using the fnmatch method:

File.fnmatch("foo*", "food") #=> true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文