Jodd is an open-source java library with lot of reusable components and feature rich utilities. This requires the library jodd-3.3.2.jar to be in classpath. The following example shows how to use StringUtil.endsWithIgnoreCase() API.
package com.bethecoder.tutorials.jodd.utils; import jodd.util.StringUtil; public class StringEndsWithIgnorecaseTest { /** * @param args */ public static void main(String[] args) { System.out.println(StringUtil.endsWithIgnoreCase("abcd", "Cd")); System.out.println(StringUtil.endsWithIgnoreCase("abcd", "BcD")); System.out.println(StringUtil.endsWithIgnoreCase("be the coder", " Coder")); System.out.println(StringUtil.endsWithIgnoreCase("abcd", "ac")); } }
true true true false