In sublimetext3 I need to replace all instances of
stream64 = Foo.GetStream64(path64);
Incrementing all the occurances of 64 per line like
stream64 = Foo.GetStream64(path64);
stream65 = Foo.GetStream65(path65);
stream66 = Foo.GetStream66(path66);
...
stream1024 = Foo.GetStream1024(path1024);
without touching the other things, just the numbers. I don’t know much a bout regex so how could I make it?