Disregarding CASE in a string
Ok so I would like to detect the extension of files and treat the files differently based on their extension.
But some files of the same filetype have different extensions like ".Mp3" or ".mp3" forexample. So in stead of doing something like:
if(string extension == ".mp3" || extension == ".Mp3" || extension == ".mP3") and so on, is there a way to eliminate the case or disregard the case?
Thanks,
paoloTheCool

