Package org.jitterbit.plugin.sdk.pipeline

Examples of org.jitterbit.plugin.sdk.pipeline.RegExReplacePlugin


        // we want to replace all occurrences of the ascii one character ('\1').
        String regex = "\\x01";
        // The replacement string. In this example we want to replace all '\1'
        // with a space.
        String replacement = " ";
        new RegExReplacePlugin(regex, replacement).run();
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.plugin.sdk.pipeline.RegExReplacePlugin

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.