What about finding terms across verse boudaries? As far as I remember the index documents are on per verse basis. So there is no way lucene query can find nearby words in a paragraph (across verse boundaries). Regex can help if we string-together verses or use Passage, but like DM mentioned, it will be slow to run regex (regex can be compiled once, but it has to run on so many verse strings).<div>
<br></div><div>BTW Is anyone working on getting search result highlighting? What needs to done besides using lucene-highlighter during the search?</div><div><br></div><div>-Sijo</div><div><br><div class="gmail_quote">On Wed, Feb 24, 2010 at 11:05 PM, DM Smith <span dir="ltr">&lt;<a href="mailto:dmsmith@crosswire.org">dmsmith@crosswire.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">JSword search indexes support the full search syntax of Lucene. This has some support for regular expressions. Specifically, it allows for * to mean zero or more characters. I think we&#39;ve got the Lucene flag to allow prefix wild cards. Note that this is more like what a shell uses: it is not a modifier for the previous character.<br>

<br>
It was correctly noted that wash.*word will not search the verse as a whole. Lucene search is based on words. The correct pattern in Lucene would be wash*word, as &#39;.&#39; does not mean any character but rather it means a punctuation mark. So &quot;wash.*word&quot; would be split into &quot;wash *word&quot; and would find all verses with the word &quot;wash&quot; and any word ending with &quot;word&quot;, such as &quot;sword&quot;.<br>

<br>
The default connector for JSword is OR. It would be good to add the ability for a user to change it to AND. With that, &quot;wash* word&quot; would produce the expected results as it would be interpreted as &quot;wash* AND word&quot; instead of &quot;wash* OR word&quot;. (Choice would be some thing like &quot;Search for ALL words instead of ANY words.&quot;) We made OR the default because it more closely matched various familiar search engines, such as Google, and because it is the default of Lucene.<br>

<br>
Lucene does have a regular expression capability, but it is not part of JSword. It would be a good addition. Still, it would be based on words and not on the text of a verse.<br>
<br>
Adding the ability to search an arbitrary regular expression would be a good addition. I don&#39;t think it would be too hard to add it. Jsword already has the interface for any search implementation. Java&#39;s Regex is a variant of Perl&#39;s but has a bit more power.  There are some issues: We&#39;ll be adding highlighting to Lucene&#39;s search. Adding that to Regex would be a separate effort. The regex search would be mutually exclusive from Lucene search, so that would need to be made obvious. (In The SWORD Project for Windows, they have both it is a bit confusing as it is not clear.)<br>

<br>
And yes, it will need to go throw the &quot;plain&quot; text of each verse. It will be about as slow as creating an index. Basically, it will need to take the raw verse and strip the markup. (This is part of JSword already and Lucene indexing uses it.) And perhaps strip out the punctuation. Finally doing the search.<br>

<br>
If you want, add an issue or two to Jira (<a href="http://www.crosswire.org/bugs" target="_blank">www.crosswire.org/bugs</a>) under JSword. That way it won&#39;t be forgotten.<br>
<br>
In Christ,<br><font color="#888888">
    DM</font><div><div></div><div class="h5"><br>
<br>
<br>
On 02/23/2010 08:33 PM, Trenton D. Adams wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
But then again, I wonder if it&#39;s even needed, who knows.<br>
<br>
----- &quot;Trenton D. Adams&quot;&lt;<a href="mailto:trent.jsword@trentonadams.ca" target="_blank">trent.jsword@trentonadams.ca</a>&gt;  wrote:<br>
<br>
   <br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
From: &quot;Trenton D. Adams&quot;&lt;<a href="mailto:trent.jsword@trentonadams.ca" target="_blank">trent.jsword@trentonadams.ca</a>&gt;<br>
To: &quot;J-Sword Developers Mailing&quot;&lt;<a href="mailto:jsword-devel@crosswire.org" target="_blank">jsword-devel@crosswire.org</a>&gt;<br>
Sent: Tuesday, February 23, 2010 7:29:08 PM GMT -06:00 US/Canada Central<br>
Subject: [jsword-devel] regex searching<br>
<br>
Hello,<br>
<br>
I&#39;m getting the impression that regular expression searching is not at<br>
all possible without implementing something that loads the books<br>
itself, and goes through each verse of the bible.  Is this true?<br>
<br>
It seems like the Lucene Index just doesn&#39;t support regular expression<br>
searches, eh?  And it also seems like SearcherFactory is currently not<br>
finished being implemented as a SearcherFactory, correct?  Or, perhaps<br>
other methods need to be added, like createSearcher(Book, Class<br>
searcherClass)???  Then you could provide another searcher type.<br>
<br>
What would be appropriate for this? adding the new<br>
SearcherFactory.createSearcher(), adding another &quot;find&quot; method to<br>
AbstractBook/Book that is something like &quot;find(SearchRequest,<br>
Searcher)&quot;???<br>
<br>
Are the books and everything abstract enough that I can search them by<br>
loading the text?  Or would I have to restrict it to the book types I<br>
know how to parse?<br>
<br>
Anything else?<br>
<br>
Thanks.<br>
<br>
_______________________________________________<br>
jsword-devel mailing list<br>
<a href="mailto:jsword-devel@crosswire.org" target="_blank">jsword-devel@crosswire.org</a><br>
<a href="http://www.crosswire.org/mailman/listinfo/jsword-devel" target="_blank">http://www.crosswire.org/mailman/listinfo/jsword-devel</a><br>
     <br>
</blockquote>
_______________________________________________<br>
jsword-devel mailing list<br>
<a href="mailto:jsword-devel@crosswire.org" target="_blank">jsword-devel@crosswire.org</a><br>
<a href="http://www.crosswire.org/mailman/listinfo/jsword-devel" target="_blank">http://www.crosswire.org/mailman/listinfo/jsword-devel</a><br>
   <br>
</blockquote>
<br>
<br>
_______________________________________________<br>
jsword-devel mailing list<br>
<a href="mailto:jsword-devel@crosswire.org" target="_blank">jsword-devel@crosswire.org</a><br>
<a href="http://www.crosswire.org/mailman/listinfo/jsword-devel" target="_blank">http://www.crosswire.org/mailman/listinfo/jsword-devel</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Regards,<br>Sijo<br>
</div>