SpanExcluding()

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

Usage

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

Calling

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

SpanExcluding(
   string=?, 
   substring=?
);

Supports passing parameters as a structure using ArgumentCollection:

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