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
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
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.