跳转到内容

Rebol 编程/suffix?

来自维基教科书,开放的书籍,开放的世界
SUFFIX? path 

返回文件名或 URL 的后缀(扩展名),否则返回 NONE。

SUFFIX? 是一个函数值。

  • path -- (类型: any-string)

源代码

[编辑 | 编辑源代码]
suffix?: func [
    {Return the suffix (ext) of a filename or url, else NONE.} 
    path [any-string!]
][
    if all [
        path: find/last path #"." 
        not find path #"/"
    ] [to-file path]
]
华夏公益教科书