====== StrSubstr ====== /* * File: strSubst.cpp * Author: borovec * * Created on 18. listopad 2008, 17:49 */ #include using namespace std; bool isSearchStr(const char * Where, const char * Search){ if(strlen(Search)==0) return (false); while(*Search!='\0'){ if(*Search!=*Where) return (false); Where++; Search++; } return (true); } char * reallocArray(char * array, int &len, int newlen){ char * newArray = new char[newlen]; if(len "ahojahojahojahoj" cout << strSubst ( "+*[]*++*[]*+test+*[]*++*[]*+", "+*[]*+", "" ) << endl; // ret -> "test" cout << strSubst ( "aaa", "aa", "b" ) << endl; // ret -> "ba" cout << strSubst ( "aaa", "", "b" ) << endl; // ret -> "aaa" cout << strSubst ( "Kozino, Kozino, do roka a do dne ...", "", "" ) << endl; // ret -> "test" return (EXIT_SUCCESS); }