Package org.boris.expr.function.excel

Examples of org.boris.expr.function.excel.FIND


        assertEquals(eval(e, "1.2", 1.2), true);
        assertEquals(eval(e, ExprMissing.MISSING, ExprMissing.MISSING), true);
    }

    public void testFIND() throws Exception {
        FIND f = new FIND();
        assertEquals(eval(f, "M", "Miriam McGovern"), 1);
        assertEquals(eval(f, "m", "Miriam McGovern"), 6);
        assertEquals(eval(f, "M", "Miriam McGovern", 3), 8);
    }
View Full Code Here

TOP

Related Classes of org.boris.expr.function.excel.FIND

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.