I am using Java to split a search query on it's spaces
example:
String[] queryParams = queryString.split(" ");
so search for "New York Yankees" will get put into an array of three elements.
Now, I want to iterate over each of those elements (regardless of the length of the query) and store them in their respective variables so I can dynamically populate another part of my program.
Thanks