While converting from VB6 to VB9 I have
a lot of statements that I would like to convert from
xxx = xxx + yyy ' add yyy to xxx
to
xxx += yyy 'add yyy to xxx
Does anybody have a regular expression that might do this?
I've created quite a few basic expressions but this one escapes me.
Thanks, Wayne