Rebol Programming/detab
USAGE:
editDETAB string /size number
DESCRIPTION:
editConverts tabs in a string to spaces. (tab size 4)
DETAB is a native value.
ARGUMENTS
edit- string -- (Type: any-string)
REFINEMENTS
edit- /size -- Specifies the number of spaces per tab.
- number -- (Type: integer)
SOURCE CODE
editdetab: native[ "Converts tabs in a string to spaces. (tab size 4)" string [any-string!] /size "Specifies the number of spaces per tab." number [integer!] ]