is the title-streaming working in the latest code? 

also, for all you perl wiz's out there:

i've got a script set up to enter my files into the database (by-passing the
deamon and it's naughty renaming) but i've run into one small problem:

my files are all lower case, but for display purposes i've got the script
capitalizing the artist and album with:

$track =~ s/\b(\w)/\U$1/g;

which works fine except it recognizes ' as a non-word character (as it's not
a valid variable character) and capitalizes the next letter after it so

that's entertainment 

becomes

That'S Entertainment

anyone know an easy way to get around this? ideally if i could search for
instances of ' and lowercase the next letter that'd be great but i'm not
sure of a way to substitute something immediatly after a search pattern.

-f

Reply via email to