Neo4j - String Functions



Like SQL, Neo4J CQL has provided a set of String functions to use them in CQL Queries to get the required results.

Here, we are going to discuss some of the important and frequently used functions.

String Functions List

Following is the list of prominent String functions in Neo4j.

Sr.No Function & Description
1 UPPER

It is used to change all letters into upper case letters.

2 LOWER

It is used to change all letters into lower case letters.

3 SUBSTRING

It is used to get substring of a given String.

4 Replace

It is used to replace a substring with a given substring of a String.

Advertisements