REBOL Programming/entab

< REBOL Programming

USAGE:

ENTAB string /size number 

DESCRIPTION:

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

ENTAB is a native value.

ARGUMENTS

REFINEMENTS

SOURCE CODE

entab: native[
    "Converts spaces in a string to tabs. (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.