Mega Code Archive

 
Categories / Ruby / File Directory
 

Find patter matching

File.fnmatch("*.rb", "hello.rb")     # => true File.fnmatch("*.[ch]", "ruby.c")     # => true File.fnmatch("*.[ch]", "ruby.h")     # => true File.fnmatch("?.txt", "ab.txt")      # => false