跳转到内容

Rebol 编程/detab

来自维基教科书,开放书籍,开放世界
DETAB string /size number 

将字符串中的制表符转换为空格。(制表符大小为 4)

DETAB 是一个原生值。

  • string -- (类型:任何字符串)
  • /size -- 指定每个制表符的空格数。
    • number -- (类型:整数)

源代码

[编辑 | 编辑源代码]
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!]
]

华夏公益教科书