Here's how I'd do it:
files = %w[/xyz/abc.pl /xyz/def.rb /xyz/ghi.pl /xyz/jkl.rb /xyz/mno.pl foo.rb bar.pl /xyz/foo.java ]
files.grep(%r[/xyz/.+\.(?:rb|pl)$])
=> ["/xyz/abc.pl", "/xyz/def.rb", "/xyz/ghi.pl", "/xyz/jkl.rb", "/xyz/mno.pl"]
If you don't care what the path is, use:
files.grep(%r[\.(?:rb|pl)$])
=> ["/xyz/abc.pl",
"/xyz/def.rb",
"/xyz/ghi.pl",
"/xyz/jkl.rb",
"/xyz/mno.pl",
"foo.rb",
"bar.pl"]
You say the filenames being matched are in log files, but don't show an example of the file format. If the filenames are at the end of lines then the $ anchor will pick up the matches. If the filenames are embedded in lines then remove the $ anchor.
This does not work for file paths with white space :(
Without modifications to the last example code, only adding some filenames with embedded spaces, and some paths with embedded spaces:
files = %w[/xyz/abc.pl /xyz/def.rb /xyz/ghi.pl /xyz/jkl.rb /xyz/mno.pl foo.rb bar.pl /xyz/foo.java ]
files += [
'ruby file.rb',
'perl file.pl',
'/foo bar/ruby.rb',
'/foo bar/perl.rb'
]
files.grep(%r[\.(?:rb|pl)$])
Looks like this in IRB:
irb(main):008:0> files = %w[/xyz/abc.pl /xyz/def.rb /xyz/ghi.pl /xyz/jkl.rb /xyz/mno.pl foo.rb bar.pl /xyz/foo.java ]
[
[0] "/xyz/abc.pl",
[1] "/xyz/def.rb",
[2] "/xyz/ghi.pl",
[3] "/xyz/jkl.rb",
[4] "/xyz/mno.pl",
[5] "foo.rb",
[6] "bar.pl",
[7] "/xyz/foo.java"
]
irb(main):009:0> files += [
irb(main):010:1* 'ruby file.rb',
irb(main):011:1* 'perl file.pl',
irb(main):012:1* '/foo bar/ruby.rb',
irb(main):013:1* '/foo bar/perl.rb'
irb(main):014:1> ]
[
[ 0] "/xyz/abc.pl",
[ 1] "/xyz/def.rb",
[ 2] "/xyz/ghi.pl",
[ 3] "/xyz/jkl.rb",
[ 4] "/xyz/mno.pl",
[ 5] "foo.rb",
[ 6] "bar.pl",
[ 7] "/xyz/foo.java",
[ 8] "ruby file.rb",
[ 9] "perl file.pl",
[10] "/foo bar/ruby.rb",
[11] "/foo bar/perl.rb"
]
irb(main):015:0>
irb(main):016:0* files.grep(%r[\.(?:rb|pl)$])
[
[ 0] "/xyz/abc.pl",
[ 1] "/xyz/def.rb",
[ 2] "/xyz/ghi.pl",
[ 3] "/xyz/jkl.rb",
[ 4] "/xyz/mno.pl",
[ 5] "foo.rb",
[ 6] "bar.pl",
[ 7] "ruby file.rb",
[ 8] "perl file.pl",
[ 9] "/foo bar/ruby.rb",
[10] "/foo bar/perl.rb"
]
So, yes, embedded whitespace is handled also.
'/xyz/arb_path/abc.rb /xyz/arb_path/def.xml foo bar /xyz/arb_path/ghi.pl foo bar /xyz/arb_path/jkl.xml /xyz/arb_path/mno.rb'.split.grep(/\.(?:rb|pl)$/)
=> [
[0] "/xyz/arb_path/abc.rb",
[1] "/xyz/arb_path/ghi.pl",
[2] "/xyz/arb_path/mno.rb"
]