// file: ./examples/example_02.cc // // isip include files // #include // main program starts here // int main(int argc, const char **argv) { // declare the sentence as an String object // String sentence(L"six one five four nine five three"); // replace the "five" by "ten" at all occurances // sentence.replaceAll(L"five", L"ten"); // print the modified sentence to the console // sentence.debug(L"modified sentence"); // exit gracefully // Integral::exit(); }