Page 1 of 1

StringField() with NoCase detection

Posted: Thu Feb 13, 2014 12:05 pm
by Kwai chang caine
Hello

Is it possible to have a NoCase detection like for FindString() ??

Code: Select all

a$ = "Hello i'm KCC for ever"
Debug "Left part = " + StringField(a$, 1, "KCC", #PB_String_NoCase)
Debug "Right part = " +  StringField(a$, 2, "kcc", #PB_String_NoCase)
Debugger wrote:Left part = Hello i'm
Right part = for ever
Thanks 8)