I'm surprised that it matches either - don't you need ".*in" where .* means match any character zero or more times? See the javadoc for java.util.regex.Pattern, or for Jakarta Regexp if you are using that package.
Unless you're an expert in regexps it is probably worth playing with them outside your lucene code to start with e.g. with simple String.matches(regexp) calls. They can take some getting used to. And try to avoid anything with backslashes if you can! -- Ian. On Fri, May 8, 2009 at 1:42 PM, Huntsman84 <tpgarci...@gmail.com> wrote: > > Hi, > > I am using RegexQuery for searching in a set of records wich are phrases of > several words each. My aim is to find any phrase that contains the given > group of letters (e.g. "in"). For that case, I am building the query with > the regular expression ".in.", so it should return all phrases with contain > "in", but the search only matches with the first word of the phrase. > > For example, if my records are "Knowing yourself" and "Old clinic", the > correct search would return 2 matches, but it only matches with "Knowing > yourself". > > How could I fix this? > -- --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org