- Found in:
- Dylbills PE
Description
Documentation Comment
find next word in string. (Next string of non white space) from startIndex
Examples:
String A = FindNextWordInString("This is some text ") ;A = "This"
String B = FindNextWordInString("This is some text ", 12) ;B = "text"
String C = FindNextWordInString("This is some text ", 9) ;C = "ome"
requires skse
Parameters
strings
intstartIndex=0
Examples
Auto-Generated Example
string myString__s
int myInt__startIndex
string returnedValue = DbMiscFunctions.FindNextWordInString(myString__s, myInt__startIndex)