Well that doesn't return an array, but rather one of n strings. Seems rather inneficient when called iteratively since it will have to perform an O(n) search for every call, with each successive call that is deeper into the string costing more. Unless I'm missing an obvious optimization that it may be implemented with. A single array creating function should be more efficient.
--- In [email protected], "Paul Ho" <paul.t...@...> wrote: > > StrExtract(). > > --- In [email protected], "Conrad Joach" <consolejoker@> wrote: > > > > Looking for something akin to a Split() function that is common in most > > languages today. > > > > So for a string: > > > > "a,b,c,d" > > > > It would return an array of length 4, with the string "a", "b", "c", "d". > > > > I don't see anything like this in AFL, has anyone written one with the > > built in string functions that do exist? > > >
