Does anyone know any cool text editing program for easy code translation? I have some code like
public var distance:Number;
public var blurX:Number;
public var blurY:Number;
I need to transform it into
public double distance;
public double blurX;
public double blurY;
So, I want to say to that text editor something like this to do this job
“COMMAND::Find_ALL: var *:Number; COMMAND::Replace_ALL: double *;”
Of course I would like some UI for that but it is not so important.
If it will be able to do such operation on multiple documents it would be big plus.
BTW: I want it for translation from Action Script 3 to C#.
PS: If there is no such program but you can write it, such action would be appreciated, if you cannot or do not want to just do not say anything!