Friday, May 19, 2017

Java String Example

May 19, 2017
String
String in Java Strings Example Example 1: Get first two characters of any String public String firstTwo(String str) { if (str.length() >= 2) { return str.substring(0, 2); } else { return str; } // Solution notes: need an if/else structure to call substring if the length // is 2 or more, and otherwise return the string itself } Alternative example of getting first...
Read More