Can Drupal's search module search for a substring? (Partial Search)

后端 未结 4 794
星月不相逢
星月不相逢 2021-02-14 01:03

Drupal\'s core search module, only searches for keywords, e.g. \"sandwich\". Can I make it search with a substring e.g. \"sandw\" and return my sandwich-results?

Maybe t

4条回答
  •  遥遥无期
    2021-02-14 01:31

    Recently I made a patch for Drupal's core search module to provide it with partial search (aka n-gram searches) ability. This is tested against Drupal 6.15 & 6.16 releases. You might want to read about patching.

    On the other hand you can make use of Apache Solr Search Integration, Search Lucene API modules or other 3rd-party search solutions which takes more time to implement.

    PorterStemmer module has its own different story in which you might be interested, too.

提交回复
热议问题