Package org.apache.tools.ant.filters
Class TokenFilter.ReplaceRegex
- java.lang.Object
- 
- org.apache.tools.ant.ProjectComponent
- 
- org.apache.tools.ant.filters.TokenFilter.ChainableReaderFilter
- 
- org.apache.tools.ant.filters.TokenFilter.ReplaceRegex
 
 
 
- 
- All Implemented Interfaces:
- java.lang.Cloneable,- ChainableReader,- TokenFilter.Filter
 - Enclosing class:
- TokenFilter
 
 public static class TokenFilter.ReplaceRegex extends TokenFilter.ChainableReaderFilter filter to replace regex.
- 
- 
Field Summary- 
Fields inherited from class org.apache.tools.ant.ProjectComponentdescription, location, project
 
- 
 - 
Constructor SummaryConstructors Constructor Description ReplaceRegex()
 - 
Method SummaryModifier and Type Method Description java.lang.Stringfilter(java.lang.String line)filter and/of modify a stringvoidsetFlags(java.lang.String flags)voidsetPattern(java.lang.String from)the from attributevoidsetReplace(java.lang.String to)the to attribute- 
Methods inherited from class org.apache.tools.ant.filters.TokenFilter.ChainableReaderFilterchain, setByLine
 - 
Methods inherited from class org.apache.tools.ant.ProjectComponentclone, getDescription, getLocation, getProject, log, log, setDescription, setLocation, setProject
 
- 
 
- 
- 
- 
Method Detail- 
setPatternpublic void setPattern(java.lang.String from) the from attribute- Parameters:
- from- the regex string
 
 - 
setReplacepublic void setReplace(java.lang.String to) the to attribute- Parameters:
- to- the replacement string
 
 - 
setFlagspublic void setFlags(java.lang.String flags) - Parameters:
- flags- the regex flags
 
 - 
filterpublic java.lang.String filter(java.lang.String line) Description copied from interface:TokenFilter.Filterfilter and/of modify a string- Parameters:
- line- the string to modify
- Returns:
- the modified string
 
 
- 
 
-