StringField() with NoCase detection
Posted: Thu Feb 13, 2014 12:05 pm
Hello
Is it possible to have a NoCase detection like for FindString() ??
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)
ThanksDebugger wrote:Left part = Hello i'm
Right part = for ever
