Do you search some words in particular song? If so, you may not really need a set for this, you can run your search just from the point you got the lyrics. You can use plain regexp for this, this might be a way bit faster than splitting the String, putting it into a set and querying the set then:
public class RegexpExample {
public static void main(String[] args) {
String song = "Is this a real life? Is this just fantasy?";
String toFind = "is";
Pattern p = Pattern.compile(toFind, Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(song);
while (m.find()) {
String found = m.group();
int startIndex = m.start();
int endIndex = m.end();
System.out.println(found + " at start " + startIndex + ", end " + endIndex);
//do something with this info...
}
}
It will output this:
Is at start 0, end 2
is at start 5, end 7
Is at start 21, end 23
is at start 26, end 28
If you however search in different songs you can concatenate their lyrics using StringBuilder, then call StringBuilder#toString and do the whole operation with the result of toString method