apoc.text.charAt

Function APOC Core

apoc.text.charAt(text, index) - the decimal value of the character at the given index

Signature

apoc.text.charAt(text :: STRING?, index :: INTEGER?) :: (INTEGER?)

Input parameters

Name Type Default

text

STRING?

null

index

INTEGER?

null

Usage Examples

RETURN apoc.text.charAt("Neo4j", 4) AS output;
Table 1. Results
output

106