cc.mallet.pipe
Class CharSequenceReplace

java.lang.Object
  extended by cc.mallet.pipe.Pipe
      extended by cc.mallet.pipe.CharSequenceReplace
All Implemented Interfaces:
AlphabetCarrying, java.io.Serializable

public class CharSequenceReplace
extends Pipe
implements java.io.Serializable

Given a string, repeatedly look for matches of the regex, and replace the entire match with the given replacement string.

Author:
Andrew McCallum mccallum@cs.umass.edu
See Also:
Serialized Form

Field Summary
static java.util.regex.Pattern SKIP_HEADER
           
static java.util.regex.Pattern SKIP_SGML
           
 
Constructor Summary
CharSequenceReplace(java.util.regex.Pattern regex, java.lang.String replacement)
           
 
Method Summary
 Instance pipe(Instance carrier)
          Really this should be 'protected', but isn't for historical reasons.
 
Methods inherited from class cc.mallet.pipe.Pipe
alphabetsMatch, getAlphabet, getAlphabets, getDataAlphabet, getInstanceId, getTargetAlphabet, instanceFrom, instancesFrom, instancesFrom, isDataAlphabetSet, isTargetProcessing, newIteratorFrom, preceedingPipeDataAlphabetNotification, preceedingPipeTargetAlphabetNotification, precondition, readResolve, setDataAlphabet, setOrCheckDataAlphabet, setOrCheckTargetAlphabet, setTargetAlphabet, setTargetProcessing
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SKIP_SGML

public static final java.util.regex.Pattern SKIP_SGML

SKIP_HEADER

public static final java.util.regex.Pattern SKIP_HEADER
Constructor Detail

CharSequenceReplace

public CharSequenceReplace(java.util.regex.Pattern regex,
                           java.lang.String replacement)
Method Detail

pipe

public Instance pipe(Instance carrier)
Description copied from class: Pipe
Really this should be 'protected', but isn't for historical reasons.

Overrides:
pipe in class Pipe