In Neo4j, we can do mysql query "like" with
ex. If node "temp" have column "col" and value "This was in World war 1945";
If we search by "wor"
and where query is
temp.col =~ '(?i).*'. $search_value . '.*'
Then results are coming. But I want results to come only when searched for world with any case change.
How to do exact word match?
i.e. If we search for string then there should be space or no any character at start and end of word.