tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Ostermiller Utilities > String Starts with any Ignorecase

String Starts with any Ignorecase 

Ostermiller Java Utilities contain various components such as CSV parsing, Base64 Encoding, MD5 digest, String and Exec Helper classes. This requires the library ostermillerutils-1.08.01.jar to be in classpath. The following example shows using StringHelper.startsWithAnyIgnoreCase() API. It returns TRUE if the given string starts with any of the given terms irrespective of the case.

File Name  :  
com/bethecoder/tutorials/ostermillerutils/StringStartsWithAnyIgnorecaseTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.ostermillerutils;

import java.io.IOException;

import com.Ostermiller.util.StringHelper;

public class StringStartsWithAnyIgnorecaseTest {

  /**
   @param args
   @throws IOException 
   */
  public static void main(String[] argsthrows IOException {

    String str = "be the coder";
    String [] terms = new String [] { "CO""A""bE" };
    System.out.println(StringHelper.startsWithAnyIgnoreCase(str, terms));
    
    terms = new String [] { "ABC""A""XYZ" };
    System.out.println(StringHelper.startsWithAnyIgnoreCase(str, terms));
  }

}
   

It gives the following output,
true
false



 
  


  
bl  br