I don't see it in string functions, not in APOC either.
Please confirm it and I will have to do it outside of neo4j. Those functions are very helpful though.
I don't see it in string functions, not in APOC either.
Please confirm it and I will have to do it outside of neo4j. Those functions are very helpful though.
Have you considered
apoc.text.clean(text)
strip the given string of everything except alpha numeric characters and convert it to lower case.
and thus something similar to
match (n:Movie) where apoc.text.clean(n.title)=n.title return n;
or is this giving you issues as well
| Topic | Replies | Views | Activity | |
|---|---|---|---|---|
| Filtering Non-English Characters In Neo4J | 4 | 1155 | December 4, 2020 | |
| Cypher to remove numbers and special characters from a string in a node property and sort the alpha characters | 1 | 1405 | October 7, 2021 | |
| How to get TEXT functions like apoc.text.camelCase(text) in neo4j 3.5.4 | 5 | 656 | March 27, 2020 | |
| How can i build a query with accent Insensitive in clause | 2 | 681 | November 18, 2020 | |
| How to make case-insensitive filtering using neo4j-graphql-js? | 4 | 1736 | November 20, 2020 |