Skip to content

Commit

Permalink
PR review update
Browse files Browse the repository at this point in the history
  • Loading branch information
gem-neo4j committed Jan 8, 2024
1 parent c8d0a59 commit 7e99bc7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,30 @@ New features are added to the language continuously, and occasionally, some feat
This section lists all of the features that have been removed, deprecated, added, or extended in different Cypher versions.
Replacement syntax for deprecated and removed features are also indicated.

[[cypher-deprecations-additions-removals-5.17]]
== Neo4j 5.17

=== New features

[cols="2", options="header"]
|===
| Feature
| Details

a|
label:functionality[]
label:new[]

[source, cypher, role=noheader]
----
RETURN normalize("string", NFC)
----

| Introduction of a xref::functions/string.adoc#functions-normalize[normalize()] function.
Normalize a `STRING` according to the specified normalization form, which can be of type `NFC`, `NFD`, `NFKC` or `NFKD`.

|===

[[cypher-deprecations-additions-removals-5.16]]
== Neo4j 5.16

Expand Down Expand Up @@ -70,25 +94,6 @@ For more information, see the link:{neo4j-docs-base-uri}/operations-manual/{page

|===

[cols="2", options="header"]
|===
| Feature
| Details

a|
label:functionality[]
label:new[]

[source, cypher, role=noheader]
----
RETURN normalize("string", NFC)
----

| Introduction of a xref::functions/string.adoc#functions-normalize[normalize()] function.
Normalize a `STRING` according to the specified normalization form, which can be of type `NFC`, `NFD`, `NFKC` or `NFKD`.

|===

[[cypher-deprecations-additions-removals-5.15]]
== Neo4j 5.15

Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/functions/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ These functions are used to manipulate strings or to create a string representat

1.2+| xref::functions/string.adoc#functions-normalize[`normalize()`]
| `normalize(input :: STRING) :: STRING`
| Returns the given `STRING` normalized using the normal form 'NFC'.
| Returns the given `STRING` normalized using the normal form `NFC`.
| `normalize(input :: STRING, normalForm = NFC :: [NFC, NFD, NFKC, NFKD]) :: STRING`
| Returns the given `STRING` normalized according to the specified normalization form.

Expand Down

0 comments on commit 7e99bc7

Please sign in to comment.