Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在Cypher,我怎样才能比较两个值的长度使用Length和substring.. 像这样
Cypher
Length
substring
length(n.VALUE)= length(SUBSTRING(INPUT_STRING, 0,length(n.VALUE)))
使用此语法时,我总是遇到此异常:
SubstringFunction expected to be of type Collection but it is of type String
就其本身而言,该length功能旨在与集合一起使用。目前没有办法在密码中获取字符串的长度。我已经开始添加一堆新的字符串函数,比如soundexand charindex,我会把这个放在一堆要做的事情上,但我可能要再过几个星期才能完成(而且它需要通过验收,即便如此,也可能仅作为 M05+ 提供)。
length
soundex
charindex