search for phrase with specail chars?

2007-03-11 Thread ruchi thakur
I want to search for phrase „innere Organe" bezeichnet am using query q1 = "„innere Organe\" bezeichnet" is there any issue with q1 am getting Exception in retrieveQuery().IndexDirec:Lexical error at line 1, column 30. Encountered: after : "" Regards, Ruchika

Re: search for phrase with specail chars?

2007-03-11 Thread karl wettin
12 mar 2007 kl. 07.44 skrev ruchi thakur: I want to search for phrase „innere Organe" bezeichnet am using query q1 = "„innere Organe\" bezeichnet" is there any issue with q1 am getting Exception in retrieveQuery().IndexDirec:Lexical error at line 1, column 30. Encountered: after :

Re: search for phrase with specail chars?

2007-03-11 Thread ruchi thakur
org.apache.lucene.queryParser.ParseException: Lexical error at line 1, column 30. Encountered: after : "" On 3/12/07, ruchi thakur <[EMAIL PROTECTED]> wrote: I want to search for phrase „innere Organe" bezeichnet am using query q1 = "„innere Organe\" bezeichnet" is there any issue wi

Re: search for phrase with specail chars?

2007-03-11 Thread ruchi thakur
no, i just get the folowing org.apache.lucene.queryParser.ParseException: Lexical error at line 1, column 30. Encountered: after : "" On 3/12/07, karl wettin <[EMAIL PROTECTED]> wrote: 12 mar 2007 kl. 07.44 skrev ruchi thakur: > I want to search for phrase „innere Organe" bezeichnet > am

Re: search for phrase with specail chars?

2007-03-11 Thread karl wettin
12 mar 2007 kl. 07.53 skrev ruchi thakur: no, i just get the folowing org.apache.lucene.queryParser.ParseException: Lexical error at line 1, column 30. Encountered: after : "" The problem is probably that you have a " in your query, and it expects an end "-token. So it needs to be escaped.

Re: search for phrase with specail chars?

2007-03-11 Thread ruchi thakur
yes that is exactly what i am doing in java String i have something like String aSearchStr = "\"„innere Organe\\\" bezeichnet\""; Query query = parser.parse(aSearchStr); 2nd line to parse gives me the Exception. In this case as i understand the search String input that goes to lucene is actually

Re: search for phrase with specail chars?

2007-03-12 Thread karl wettin
12 mar 2007 kl. 08.24 skrev ruchi thakur: yes that is exactly what i am doing in java String i have something like String aSearchStr = "\"„innere Organe\\\" bezeichnet\""; Query query = parser.parse(aSearchStr); I'm not sure why you get this exception. Perhaps it has something to do with th

Re: search for phrase with specail chars?

2007-03-12 Thread ruchi thakur
i am using StopAnalyszer. Yes something like "innere Organe bezeichnet" works exactly fine „ character should not be a probelm, as if i remove this character, i still get the error I get this error tiil the point i have Organe\" in my query. Guess it is the double quote inside a phrase, which is

Re: search for phrase with specail chars?

2007-03-12 Thread Steven Rowe
Hi Ruchika, Are there are any quote characters in your index (may the Luke be with you[1])? If not, you could just remove all quotes from your query (except the surrounding ones indicating phrase matching, of course), and things will work, as you have indicated. Which version of Lucene are you u