StringUtilsExampleV1.java Source code

Java tutorial

Introduction

Here is the source code for StringUtilsExampleV1.java

Source

/*
false
    
 */

import org.apache.commons.lang.StringUtils;

public class StringUtilsExampleV1 {

    public static void main(String args[]) {
        System.err.println(StringUtils.containsNone("r u m t", new char[] { 'r', 'o' }));
    }
}