Thanks for the response! I took your sample code and ran with it. Here is what I'm using.
function VolNameBlackList(word)
{
// Returns TRUE if string contains any of the following keywords. Case Insensitive (?i)
import java.util.regex.*;
return Pattern.matches("(?i).*(backup|bkup|archive|mp3|personal).*", word);
}
Can easily come back and add an additional keywords to flag for approval point / discussion.