Re: Search in HTML code

2006-10-04 Thread John Bugger
Thanks, Erick! I'll try to use LIKE query to database.

Re: Search in HTML code

2006-10-03 Thread John Bugger
My crawler indexing crawled pages with these code: Document doc = new Document(); doc.add(new Field("body", page.getHtmlData(), Store.YES, Index.UN_TOKENIZED )); doc.add(new Field("url", page.getUrl(), Store.YES, Index.UN_TOKENIZED)); doc.add(new Field("title", page.getTitle(), Store.YES, Index.TO

Search in HTML code

2006-10-02 Thread John Bugger
Hello! I've indexed HTML pages and stored html codes as UN_TOKENIZED fields. So, I need to search for specific tags in those documents, for example: Do I need to write some custom analyzer or something like that? Please help me!