Home| Design| License| Regex| Download| Credits| Contact
Text-Zap Info
› Overview› Text-Zap Ant Task› Expand Text-Zap› API Docs
Components
› Filters› Savers› Groupers› Sequencers
Filters
› Append Filter› Append File Filter› Extract Lines Filter› Find Filter› Insert References› Merge Filter› Replace Filter› Replace List Filter› Replace Filter Plus› Reverse Filter› Split By Regex Filter› XSLT Filter

Find Filter

The find filter searches for all unique occurances of a given regex an optionally saves those occurances to a file.

The find filter can be used to create a ReplaceListFilter merge file

^topParameters

AttributeDescriptionRequired
regexthe regex to be searched forYes
outFilethe file in which to place the list of matching resultsNo

^topExamples

Searches for all occurances of 'abc' in all buffers
 <find regex="abc"/>
Searches for all number strings and places the results in "results.txt"
 <find regex="[0-9]+" outFile="results.txt"/>
SourceForge.net Logo