Package org.apache.pig.backend.hadoop.executionengine.physicalLayer.expressionOperators.regex

Examples of org.apache.pig.backend.hadoop.executionengine.physicalLayer.expressionOperators.regex.NonConstantRegex


            CompiledRegex regex2 = new CompiledRegex(Pattern.compile("[a-z]{3}"));
            assertEquals(false, regex2.match("1234", "abc") );
            assertEquals(true, regex2.match("abc", "1234") );
           
            NonConstantRegex ncr = new NonConstantRegex();
            assertEquals(false, ncr.match("1234", "abc"));
            assertEquals(false, ncr.match("abc", "1234"));
            assertEquals(true, ncr.match("1234", "\\d\\d\\d\\d"));
            assertEquals(true, ncr.match("abc", "[a-z]{3}"));
           
        } catch( Exception e ){
            fail();
        }
    }
View Full Code Here


        CompiledRegex regex2 = new CompiledRegex(Pattern.compile("[a-z]{3}"));
        assertFalse(regex2.match("1234", "abc") );
        assertTrue(regex2.match("abc", "1234") );

        NonConstantRegex ncr = new NonConstantRegex();
        assertFalse(ncr.match("1234", "abc"));
        assertFalse(ncr.match("abc", "1234"));
        assertTrue(ncr.match("1234", "\\d\\d\\d\\d"));
        assertTrue(ncr.match("abc", "[a-z]{3}"));
    }
View Full Code Here

           
            CompiledRegex regex2 = new CompiledRegex(Pattern.compile("[a-z]{3}"));
            assertEquals(false, regex2.match("1234", "abc") );
            assertEquals(true, regex2.match("abc", "1234") );
           
            NonConstantRegex ncr = new NonConstantRegex();
            assertEquals(false, ncr.match("1234", "abc"));
            assertEquals(false, ncr.match("abc", "1234"));
            assertEquals(true, ncr.match("1234", "\\d\\d\\d\\d"));
            assertEquals(true, ncr.match("abc", "[a-z]{3}"));

           
        } catch( Exception e ){
            fail();
        }
View Full Code Here

TOP

Related Classes of org.apache.pig.backend.hadoop.executionengine.physicalLayer.expressionOperators.regex.NonConstantRegex

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.