[SB 2.31] #PB_String_NoCase fails with FindString()

Just starting out? Need help? Post your questions and find answers here.
munfraid
Posts: 104
Joined: Sat Mar 24, 2018 1:33 pm

[SB 2.31] #PB_String_NoCase fails with FindString()

Post by munfraid »

#PB_String_NoCase doesn't work with FindString():

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))
// Moved from "Bugs" to "Coding Questions" (Peter)
User avatar
Peter
Posts: 1086
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: [SB 2.31] #PB_String_NoCase fails with FindString()

Post by Peter »

munfraid wrote:#PB_String_NoCase doesn't work with FindString():
#PB_String_NoCase is the fourth parameter. ;)
munfraid
Posts: 104
Joined: Sat Mar 24, 2018 1:33 pm

Re: [SB 2.31] #PB_String_NoCase fails with FindString()

Post by munfraid »

Ouch :roll:

Sorry for inconvenience...
Post Reply