How to compare a FString in C++ Condition Breakpoints?

Hi,

You should be able to do this in your conditional breakpoint. It’s not pretty, but it should work:

wcscmp((wchar_t*)MyString.Data.AllocatorInstance.Data,L"MyText") == 0

Hope this helps,

Steve

3 Likes