Code: Select all
put the files into soundListFiles
filter soundListFiles with ".wav"
Code: Select all
filter soundListFiles with ".wav|*.m4a" -- don't work

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
put the files into soundListFiles
filter soundListFiles with ".wav"
Code: Select all
filter soundListFiles with ".wav|*.m4a" -- don't work
This works:Mag wrote:I have a list of sound files .wav and .m4a, I would like to have both kind listed
Code: Select all
filter lines of soundListFiles with regex pattern "\.(wav|m4a)$"