Background for Skyrim SE
Member of the DbMiscFunctions script
stringfunctionFindNextWordInString(strings, intstartIndex=0)Global

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

  1. strings

  2. intstartIndex=0


Examples

Auto-Generated Example

string myString__s
int myInt__startIndex

string returnedValue = DbMiscFunctions.FindNextWordInString(myString__s, myInt__startIndex)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.