126
Neo4j String Functions
Neo4j CQL supports a set of string functions which are used in CQL queries to get the required results. Following is list of some important and most used string functions:
Index | Function | Description |
---|---|---|
1. | UPPER() | UPPER() function is used to change all letters into upper case letters. |
2. | LOWER() | LOWER() function is used to change all letters into lower case letters. |
3. | SUBSTRING() | SUBSTRING() function is used to get substring of a given string. |
4. | Replace() | Replace() function is used to replace a substring with a given substring of a string. |
Next TopicNeo4j Aggregation Functions