跳转到内容

Rebol 编程/undirize

来自维基教科书,开放世界中的开放书籍
UNDIRIZE path 

返回路径的副本,删除任何尾部的 "/"。

UNDIRIZE 是一个函数值。

  • path -- (类型:文件字符串 URL)

源代码

[编辑 | 编辑源代码]
undirize: func [
  {Returns a copy of the path with any trailing "/" removed.} 
  path [file! string! url!]
][
  path: copy path 
  if #"/" = pick path length? path [clear back tail path] 
  path
]
华夏公益教科书