here is a small test case
Code: Select all
core::stringw test = L"no";
test = test.replace(L"no", L"yes");
if(test.equals_ignore_case(L"no"))
printf("it doesnt work:(\n");
Code: Select all
core::stringw test = L"no";
test = test.replace(L"no", L"yes");
if(test.equals_ignore_case(L"no"))
printf("it doesnt work:(\n");