Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

glob different files + regular expression

Status
Not open for further replies.

JackTheRussel

Programmer
Aug 22, 2006
110
FI
Hi.

I have tried to glob all files which extensions are .wav, .mid, .mp3

I don't know how to "use" regular expression, could some on help me?

Now I can glob only files which extension are .mp3
Code:
#Go to folder where music-files locate.
my $music_path = "/home/some/music";
chdir ($music_path) || die "Cannot chdir to $music_path ($!)";
	
#glob all filenames which extension are .mp3
my @a = glob("*.mp3");

for (my $i=0; $i<@a; $i++){
do something...
}
 
This should sort your particular issue:
Code:
my @soundfiles = glob("*.{mp3,wav,mid}");
 
glob() itself doesn't work with regex's; it has its own expression syntax.
You can grep() the array that glob returns though for pattern matching.
Code:
my @soundfiles = grep {/\.(wav|mid|mp3|rm|ogg)$/i} glob("*");
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top