REBOL Programming/parse

< REBOL Programming

USAGE:

PARSE input rules /all /case 

DESCRIPTION:

Parses a series according to rules.

PARSE is a native value.

ARGUMENTS:

REFINEMENTS:

SOURCE CODE

parse: native[
    "Parses a series according to rules." 
    input [series!] "Input series to parse" 
    rules [block! string! none!] "Rules to parse by" 
    /all "Parses all chars including spaces." 
    /case "Uses case-sensitive comparison."
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.