([^,]+)(,[ ]*\1)+
Try this.This works.See demo.
http://regex101.com/r/yG7zB9/8
The issue was VA - HRD 1, VA - HRD 1
^ ^
The space here.You were not taking this into account as the first match has no space behid it.So inlcde [ ]*
or \s*
to make it accept.