0

I'm a newbie in solr and i would like to search with special character.

for example

id:123
data:it's

q=it'

then it will retain the result data:it's

thanks Donquixote

noodlesegg
  • 149
  • 6

1 Answers1

1

The special character ' you have used in the query, q=data:it'* will give you the result.

But there are some special characters like ~^*(){}[]:\" and white space. For them you have to use escape character \ during query. Other special characters, available in keyboard can be searched as is.

buddy86
  • 1,434
  • 12
  • 20