Salut à tous,
je sens que je vais me faire fustiger par certains d'entre vous, mais je poste quand même:
que pensez vous de ma fonction AddSlashes?
Code :
- std::string Add_Slashes(std::string toto)
- {
- const std::string delimit = "\\";
- std::string::size_type begin = 0;
- while ((begin = toto.find_first_of(delimit,begin)) != std::string::npos)
- {
- toto.insert(begin,delimit);
- begin += 2;
- }
- return toto;
- }
|
Mais bon si ça se trouve il existe déjà une fonction équivalente, mais j'ai pas trouvé