0
我剛開始使用Neo4j服務器2.0.1。我在編寫密碼腳本時遇到了一些問題,即將其中一個節點屬性更改爲基於其已定義的屬性之一。如何根據Neo4j中其中一個屬性更改節點的屬性
所以,如果我創建這些節點:
CREATE (:Post {uname:'user1', content:'Bought a new pair of pants today', kw:''}),
(:Post {uname:'user2', content:'Catching up on Futurama', kw:''}),
(:Post {uname:'user3', content:'The last episode of Game of Thrones was awesome', kw:''})
我希望腳本看內容屬性,並挑選出字「買」,並使用正則表達式來挑選出kw
屬性設置爲單詞大於五個字符。所以,user2的帖子kw是「Catching,Futurama」,user3的帖子kw是「episode,Thrones,awesome」。
任何幫助將不勝感激。
「拆分」功能似乎在2.0 refcard中缺失。它確實顯示在2.1中。 – tstorms
你能解釋一下你在SET子句中做了什麼嗎? – user3520220
更新了描述 –