apoc.text.format
Function
apoc.text.format(text String, params [Any], language String)
- formats the given string with the given parameters.
Signature
apoc.text.format(text :: STRING?, params :: LIST? OF ANY?, language = en :: STRING?) :: (STRING?)
Usage Examples
RETURN apoc.text.format("Neo4j %s", ["Bloom"]) AS output;
output |
---|
"Neo4j Bloom" |
Was this page helpful?