Ejemplo n.º 1
0
 //----------------------------------------------------------------------------------------------------
 public JsStr Replace2(string oldValue, string newValue)
 {
     this.String = JsStr.Replace(this.String, oldValue, newValue);
     return(this);
 }
Ejemplo n.º 2
0
 //----------------------------------------------------------------------------------------------------
 public string Replace1(string oldValue, string newValue)
 {
     return(JsStr.Replace(this.String, oldValue, newValue));
 }