Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

split function (See related posts)

    ; Gabriele's, with Andreas's ANY mod.
    split: func [string delim /local result data] [
        result: copy []
        parse/all string [
            ; The ANY bit ensures we don't insert NONE values.
            any [copy data to delim (insert tail result any [data copy ""]) delim]
            copy data to end (insert tail result any [data copy ""])
        ]
        result
    ]

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts