Rebol Programming/select
USAGE:
SELECT series value /part range /only /case /any /with wild /skip size
DESCRIPTION:
Finds a value in the series and returns the value or series after it.
SELECT is an action value.
ARGUMENTS
- series -- (Type: series object port)
 - value -- (Type: any-type)
 
REFINEMENTS
- /part -- Limits the search to a given length or position.
- range -- (Type: number series port)
 
 - /only -- Treats a series value as a single value.
 - /case -- Characters are case-sensitive.
 - /any -- Enables the * and ? wildcards.
 - /with -- Allows custom wildcards.
- wild -- Specifies alternates for * and ? (Type: string)
 
 - /skip -- Treat the series as records of fixed size
- size -- (Type: integer)
 
 
SOURCE CODE
select: native[
    {Finds a value in the series and returns the value or series after it.} 
    series [series! object! port!] 
    value [any-type!] 
    /part "Limits the search to a given length or position." 
    range [number! series! port!] 
    /only "Treats a series value as a single value." 
    /case "Characters are case-sensitive." 
    /any "Enables the * and ? wildcards." 
    /with "Allows custom wildcards." 
    wild [string!] "Specifies alternates for * and ?" 
    /skip "Treat the series as records of fixed size" 
    size [integer!]
]