查找基本文件名

时间:2014-02-14 16:08:30

标签: progress-4gl openedge

查找正在进行的基本文件名的最简单方法。

我有:

 /tmp/admin/run/test.txt

我希望:

 test.txt

102亿

1 个答案:

答案 0 :(得分:2)

使用R-INDEX()函数找到最右边的“/".

define variable path as character no-undo initial "/tmp/admin/run/test.txt".

display
  path format "x(60)" skip 
  substring( path, r-index( path, "/" ) + 1 ) format "x(60)"
.