Open tkolzer opened 6 months ago
The renaming of variables is currently implementend by using the str.replace methode. The following Problem can occure: If you have the variables var_1 and var_10 and want to rename var_1 to var_a then the variable var_10 will be renamed to var_a0.
var_1
var_10
var_a
var_a0
The renaming of variables is currently implementend by using the str.replace methode. The following Problem can occure: If you have the variables
var_1
andvar_10
and want to renamevar_1
tovar_a
then the variablevar_10
will be renamed tovar_a0
.