How would you minus from a split.length method? Would you need to assign it to an int like the code below or would you have to store the split.length value. An example I want to minus 1 from the split.length value.
String[] split = i.split( " " );
int a = split.length;
//Split method separates Char from spaces
a -= 1;
System.out.println("[ " + a + "]" + " Spaces in " + '"' + i + '"' );