tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Jodd > Strings > String endswith one ignorecase

String endswith one ignorecase 

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.endsWithOneIgnoreCase() API. If the given string ends with at least one string (ignorecase) from the provided array then it returns the string index in the array otherwise returns -1.

File Name  :  
com/bethecoder/tutorials/jodd/utils/StringEndsWithOneIgnorecaseTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.jodd.utils;

import jodd.util.StringUtil;

public class StringEndsWithOneIgnorecaseTest {

  /**
   @param args
   */
  public static void main(String[] args) {
    String [] dest = "ef""cd""der""ac" };
    System.out.println(StringUtil.endsWithOneIgnoreCase("ABCD", dest));
    System.out.println(StringUtil.endsWithOneIgnoreCase("Bcdef", dest));
    System.out.println(StringUtil.endsWithOneIgnoreCase("be the CODEr", dest));
    System.out.println(StringUtil.endsWithOneIgnoreCase("abcde", dest));
  }

}
   

It gives the following output,
1
0
2
-1



 
  


  
bl  br