regex removing filename from path

后端 未结 2 917
春和景丽
春和景丽 2021-02-06 06:49

How could I design a RegEx script which would remove a filename from a path? The trick is, the paths have all sorts of wrenches to throw into the works.

Paths can consis

2条回答
  •  生来不讨喜
    2021-02-06 07:15

    You can use this.

    [^\/]+$
    

    '$' matches the position at the end of the string while '[^/]+' matches any string that does not have any '/'.

提交回复
热议问题