What I want to do is take an input_string, as well as a char[] of delimiters and then split that input_string using all of the delimiters in that char[].
This is the code I have so far, but I have not found a way to utilize the char[] in the split function. If this isn't possible then I realize that I could have someone create a regex for a delimiter, but this is meant to be as simple as possible to change anything, so adding an extra delimiter would be as simple as adding it to the delimiters array.
public String[] stringSplit(char[] delimiters, String input_words) {
String[] input_words_split = null;
input_words_split = input_words.split(delimiters[0]);
return input_words_split;
}