< Rebol Programming
USAGE:
DETAB string /size number
DESCRIPTION:
Converts tabs in a string to spaces. (tab size 4)
DETAB is a native value.
ARGUMENTS
- string -- (Type: any-string)
REFINEMENTS
- /size -- Specifies the number of spaces per tab.
- number -- (Type: integer)
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.