[SB 2.31] #PB_String_NoCase fails with FindString()
Posted: Wed Feb 17, 2021 4:04 pm
#PB_String_NoCase doesn't work with FindString():
// Moved from "Bugs" to "Coding Questions" (Peter)
Code: Select all
a.s = "Hello"
b.s = "L"
Debug FindString(a, b)
Debug FindString(a, b, #PB_String_NoCase)
; LCase() and UCase() are working as expected
Debug FindString(LCase(a), LCase(b))
Debug FindString(UCase(a), UCase(b))