Package com.foundationdb.server.types.texpressions.Matchers

Examples of com.foundationdb.server.types.texpressions.Matchers.IndexMatcher.matchesAt()


        IndexMatcher matcher = (IndexMatcher)context.exectimeObjectAt(MATCHER_INDEX);
        if (matcher == null || !matcher.sameState(substr, '\\')) {
            context.putExectimeObject(MATCHER_INDEX, matcher = new IndexMatcher(substr));
        }

        int index = matcher.matchesAt(str, count);
        String ret = index < 0 // no match found
                ? str
                : str.substring(0, index);
        if (signed) {
            ret = new StringBuilder(ret).reverse().toString();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.