/* 9) Reverse >>>ESREVER */ import org.apache.commons.lang.StringUtils; public class StringUtilsTrial { public static void main(String[] args) { // Reverse a String System.out.println("9) Reverse >>>" + StringUtils.reverse("REVERSE")); } }