apoc.text.base64Encode
Function
apoc.text.base64Encode(text String)
- encodes the given string with Base64.
Usage Examples
Capitalise the first letter of the word with
RETURN apoc.text.base64Encode("neo4j") AS output;
output |
---|
"bmVvNGo=" |
Was this page helpful?