Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The "AnalyzersTokenizersTokenFilters" page has been changed by JanHoydahl: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters?action=diff&rev1=140&rev2=141 Comment: Example for patternReplaceCharFilter === solr.PatternReplaceCharFilterFactory === Creates `org.apache.solr.analysis.PatternReplaceCharFilter`. Applies a regex pattern to string in char stream, replacing match occurances with the specified replacement string. + + Example: + {{{ + <charFilter class="solr.PatternReplaceCharFilterFactory" pattern="([^a-z])" replacement=""/> + }}} === solr.HTMLStripCharFilterFactory === Creates `org.apache.solr.analysis.HTMLStripCharFilter`. `HTMLStripCharFilter` strips HTML from the input stream and passes the result to either `CharFilter` or `Tokenizer`. Like other CharFilters, it's specified using a <charFilter> tag, and must come before the <tokenizer>. An example: