Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/07/2009, 08:56
Avatar de Fernand0
Fernand0
 
Fecha de Ingreso: septiembre-2005
Ubicación: Buenos Aires
Mensajes: 610
Antigüedad: 19 años, 3 meses
Puntos: 19
Agregar function a.. std?¿?

Buenas.. no se bien como explicarlo, quiero hacer algo asi..

Código:
string strreplace(string before, string after, string toReplace);

main()
{
    string str1ng;
    string str1ng2;
    
    str1ng="hola";
    str1ng.strreplace("hola", "chau");
}

string strreplace(string before, string after)
{
    this.replace(..);
    etc...;
}
Se entiende mas o menos lo que quiero hacer? O sea, seria agregar la function strreplace a cualquier string
Seria algo parecido a lo que se hace con prototype en javascript

saludos!!