1. 程式人生 > >UnicodeString字串處理方法

UnicodeString字串處理方法

原文參考:https://blog.csdn.net/idkidknow/article/details/45115395

如果給定一個UnicodeString字串strCode。

現在需要確定最後一個字串是不是"\n"

UnicodeString strCode(L"helloworld\n");

int iLength = strCode.Length();

if(strCode.SubString(iLength, iLength) != L"\n")

{

        strCode += L"\n";

}

測試環境:C++builder 10.2.3