apoc.text.byteCount
Function
apoc.text.byteCount(text String, charset String)
- returns the size of the given string in bytes.
Usage Examples
RETURN apoc.text.byteCount("Neo4j") AS output;
output |
---|
5 |
RETURN apoc.text.byteCount("Jesús") AS output;
output |
---|
6 |
Was this page helpful?