public class StringExample { public static void main(String [] args) { String str = "Hello World!"; int strLength = str.length(); System.out.println("String length is "+strLength); } }