First i know match chinese unicode should use
[\x{4e00}-\x{9fa5}]
Then i use group and backreference
([\x{4e00}-\x{9fa5}])\1
But the result is adjacency, like "中中".
I need all the character which appear more than one time anywhere in the text. Like
中国保持中立
^ ^
PS.I use textmate editor.
Any help? TIA!