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

String equals one 

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

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

import jodd.util.StringUtil;

public class StringEqualsOneTest {

  /**
   @param args
   */
  public static void main(String[] args) {
    String[] dest = "one""two""three""four" };
    System.out.println(StringUtil.equalsOne("one", dest));
    System.out.println(StringUtil.equalsOne("two", dest));
    System.out.println(StringUtil.equalsOne("three", dest));
    System.out.println(StringUtil.equalsOne("six", dest));
  }

}
   

It gives the following output,
0
1
2
-1



 
  


  
bl  br