SpanIncluding()

Returns back the string up to the point where any of the strings in sub-string is matched, including the substring

Usage

STRING = SpanIncluding( string, substring )
Argument Summary
string string
substring sub-string

Calling

Supports named-parameter calling allowing you to use the function like:

SpanIncluding(
   string=?, 
   substring=?
);

Supports passing parameters as a structure using ArgumentCollection:

SpanIncluding( ArgumentCollection={
   string : ?, 
   substring : ?
} );