public ExtractorOperation(string regex, NodeApplyMode mode, double delta){
     this.Regex = regex;
     this.Mode = mode;
     this.delta = delta;
     
 }
 public ExtractorOperation(string regex, NodeApplyMode mode) : this(regex, mode, 1) {}