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

String startswith 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.startsWithIgnoreCase() API.

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

import jodd.util.StringUtil;

public class StringStartsWithIgnorecaseTest {

  /**
   @param args
   */
  public static void main(String[] args) {
    System.out.println(StringUtil.startsWithIgnoreCase("abcd""Ab"));
    System.out.println(StringUtil.startsWithIgnoreCase("abcd""aBc"));
    System.out.println(StringUtil.startsWithIgnoreCase("be the coder""BE "));
    System.out.println(StringUtil.startsWithIgnoreCase("abcd""ac"));
  }

}
   

It gives the following output,
true
true
true
false



 
  


  
bl  br