I want to remove white spaces present inside the array values
(我有scor = [“1”,“1”])。这里,第一个值在右边有空白区域,第二个值在左边有空白区域。如何删除neo4j中的空格?
cyper具有丰富的working with strings功能。
在您的情况下,您需要trim函数:
trim
UNWIND ["1", "2 ", " 3", " 4 "] as e RETURN trim(e)