libscratchcpp icon indicating copy to clipboard operation
libscratchcpp copied to clipboard

Strings with precomposed characters are case sensitive

Open adazem009 opened this issue 2 years ago • 0 comments

Value a = "đ";
Value b = "Đ";

bool eq = (a == b); // false
bool neq = (a != b); // true

In Scratch: Scratch screenshot

This also affects the string contains string block.

adazem009 avatar Aug 08 '23 14:08 adazem009