apoc.text.byteCount
Function APOC Core
apoc.text.byteCount(text,[charset]) - return size of text 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?