apoc.text.swapCase

Function

apoc.text.swapCase(text STRING) - swaps the cases in the given STRING.

Signature

apoc.text.swapCase(text :: STRING) :: STRING

Input parameters

Name Type Default

text

STRING

null

Usage Examples

RETURN apoc.text.swapCase("Neo4j")  AS output;
Table 1. Results
output

"nEO4J"