Use capturing groups (note the "\" before the "(" and ")", and the "\1", "\2" etc):
:%s/self\.fields_desc\.append(BitField(\("[a-zA-Z0-9]*"\), \(0x[0-9]\+\), \([0-9]\+\)))/self.fields_desc.append(BitField(\1 + str(self.__class__.i), \2, \3))/g
changes:
self.fields_desc.append(BitField("foo", 0x3, 4))
self.fields_desc.append(BitField("test", 0x5, 3))
to
self.fields_desc.append(BitField("foo" + str(self.__class__.i), 0x3, 4))
self.fields_desc.append(BitField("test" + str(self.__class__.i), 0x5, 3))
Note:
- I've escaped the ".", as "." matches any character (except newline), and you want a literal "." character.
- I've replaced
* with + for the number matches: I doubt you want to match self.fields_desc.append(BitField("foo", 0x,) etc.
- If you aren't sure whether the spacing is correct, i.e., you don't always have
self.fields_desc.append(BitField("foo", 0x3... but sometimes self.fields_desc.append(BitField("foo",0x3 or self.fields_desc.append(BitField("foo", 0x3, then add a * after the space characters. Although I'd suggest insteading standardising your code.
See Regex grouping and The regex "dot".
As sidyll says, it is probably better to learn to use the built-in character classes "\d", "\w" (see Shorthand character classes) and so on:
:%s/self\.fields_desc\.append(BitField(\("\w*"\), \(0x\d\+\), \(\d\+\)))/self.fields_desc.append(BitField(\1 + str(self.__class__.i), \2, \3))/g
This is both for brevity, and readability. Also, otherwise, readers will assume you have some special reason for defining your own character class (i.e., they will read it twice to make sure there's not some unknown character in there).