REBOL Programming/select

< REBOL Programming

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

REFINEMENTS

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!]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.