I have node names in neo4j with names something like "abc124","abcd124","xyz678","zxyz678" etc
In the above node names,abc124 & abcd124 have same numbers(ID/accnt number)-124,so I need to merge these nodes which have same IDs/accnt number. The logic which I'm trying is separate the alphanumeric node names to numbers and then use apoc procedure to merge the nodes
I'm not able to find any function which removes the character part from the node names
I tried toInteger but does not work
RETURN toInteger('42AB')
So my input node names are "abc124","abcd124","xyz678","zxyz678" So my output nodes names I would want is 124,124,678,678....