Java Substring v2 - CodingBat
Simple substring(start) v1 -- previous video str.substring(start, end) Chars beginning at start Up to but not including end There is a more complex version of substring() that takes both start and end index numbers: substring(int start, int end) returns a...