//---------------------------------------------------------------------------------------------------- public JsStr Replace2(string oldValue, string newValue) { this.String = JsStr.Replace(this.String, oldValue, newValue); return(this); }
//---------------------------------------------------------------------------------------------------- public string Replace1(string oldValue, string newValue) { return(JsStr.Replace(this.String, oldValue, newValue)); }