In Solr, we normally use fq
keyword to further "filter" the results, like:
http://localhost:8983/solr/select/?q=book&fq=title:(xxxx)
But, how do i query with filter; for whether the field title
contains numbers in it or not? How about applying regex here? (how to?)