REBOL Programming/detab

< REBOL Programming

USAGE:

DETAB string /size number 

DESCRIPTION:

Converts tabs in a string to spaces. (tab size 4)

DETAB is a native value.

ARGUMENTS

REFINEMENTS

SOURCE CODE

detab: native[
    "Converts tabs in a string to spaces. (tab size 4)" 
    string [any-string!] 
    /size "Specifies the number of spaces per tab." 
    number [integer!]
]

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.