Neo4j 简明教程
Neo4j - String Functions
和 SQL 一样,Neo4J CQL 提供了一组字符串函数,可以在 CQL 查询中使用它们来获取所需的结果。
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
以下是 Neo4J 中著名的字符串函数列表。
Following is the list of prominent String functions in Neo4j.
Sr.No |
Function & Description |
1 |
UPPERIt is used to change all letters into upper case letters. |
2 |
LOWERIt is used to change all letters into lower case letters. |
3 |
SUBSTRINGIt 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. |