Coming from a SQL database based search system, we already have a set of defined patterns associated with our searchable documents.
% matches no or any number of characters _ matches one character Example: Doc 1: 'AB%CD', 'AB%CD%' Doc 2: 'AB_CD' ... Thus Doc 1 matches ABXYZCD ABCD ABCDXYZ ... Whereas Doc 2 matches only ABXCD ABYCD ABZCD ... This can be achieved in SQL WHERE statements using the LIKE operator. Is there a (similar) way to this in Solr? Thanks, Alexander