Solr - Remove specific punctuation marks

2012-09-24 Thread Daisy
=solr.WhitespaceTokenizerFactory/ filter class=solr.PatternReplaceFilterFactory pattern=[\p{Punct}[^\.^\:]] replacement= replace=all/ /analyzer /fieldType But it didn't work. Any Ideas? -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Remove-specific-punctuation-marks

RE: Solr - Remove specific punctuation marks

2012-09-24 Thread Steven A Rowe
to help more. Steve -Original Message- From: Daisy [mailto:omnia.za...@gmail.com] Sent: Monday, September 24, 2012 5:08 AM To: solr-user@lucene.apache.org Subject: Solr - Remove specific punctuation marks Hi; I am working with apache-solr-3.6.0 on windows machine. I would like to remove

RE: Solr - Remove specific punctuation marks

2012-09-24 Thread Daisy
failed to remove the bracutes from the text above, when i searched for a bracket I found result. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Remove-specific-punctuation-marks-tp4009795p4009830.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Solr - Remove specific punctuation marks

2012-09-24 Thread Markus Jelsma
-Original message- From:Daisy omnia.za...@gmail.com Sent: Mon 24-Sep-2012 15:09 To: solr-user@lucene.apache.org Subject: RE: Solr - Remove specific punctuation marks Yes I am trying to index Arabic document. There is a problem that the regex couldn't be understood

RE: Solr - Remove specific punctuation marks

2012-09-24 Thread Daisy
-specific-punctuation-marks-tp4009795p4009835.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Jack Krupansky
: Daisy Sent: Monday, September 24, 2012 9:26 AM To: solr-user@lucene.apache.org Subject: RE: Solr - Remove specific punctuation marks I tried amp; and it solved the 500 error code. But still it could find punctuation marks. Although the parsed query didnt contain the punctuation mark, str name

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Jack Krupansky
=solr.PatternReplaceCharFilterFactory/ It has the same pattern and replacement attributes. -- Jack Krupansky -Original Message- From: Jack Krupansky Sent: Monday, September 24, 2012 12:43 PM To: solr-user@lucene.apache.org Subject: Re: Solr - Remove specific punctuation marks 1. Which

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Daisy
in context: http://lucene.472066.n3.nabble.com/Solr-Remove-specific-punctuation-marks-tp4009795p4009915.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Daisy
.nabble.com/Solr-Remove-specific-punctuation-marks-tp4009795p4009918.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Jonathan Rochkind
and replacement attributes. -- Jack Krupansky -Original Message- From: Jack Krupansky Sent: Monday, September 24, 2012 12:43 PM To: solr-user@lucene.apache.org Subject: Re: Solr - Remove specific punctuation marks 1. Which query parser are you using? 2. I see the following comment in the Java 6 doc

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Walter Underwood
and replacement attributes. -- Jack Krupansky -Original Message- From: Jack Krupansky Sent: Monday, September 24, 2012 12:43 PM To: solr-user@lucene.apache.org Subject: Re: Solr - Remove specific punctuation marks 1. Which query parser are you using? 2. I see the following

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Daisy
in context: http://lucene.472066.n3.nabble.com/Solr-Remove-specific-punctuation-marks-tp4009795p4009925.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr - Remove specific punctuation marks

2012-09-24 Thread Shawn Heisey
On 9/24/2012 11:37 AM, Daisy wrote: One thing I would like to know what is the diffrence between PatternReplaceFilter and PatternReplaceCharFilter? The CharFilter version gets applied before anything else, including the Tokenizer. The Filter version gets applied in the order specified in