this-> Replace

(Caronte Pcode version 2.0)

Description

string this-> Replace ( string [subject], string [search], string [replace])


Example.

Source:

CS_ANTISPAM_SCRIPT this = new CS_ANTISPAM_SCRIPT($_this);

string testo = "Virgilio con Beatrice con Dante ?";

this->Print(this->Replace(testo,"con","e"));


Out:

Virgilio e Beatrice e Dante ?