问题描述
我有一些像这样的路径/ my / long / path / which / will / never / ends /。 我想从结尾删除所有第二个斜杠(因此输出将类似于/ my / long / path / which / will / never /)。 我怎么能这样做? 我只能使用javas String.replaceFirst或String.replaceAll。
谢谢
1楼
您可以使用:
String str = "/my/long/path/which/will/never/ends/";
str = str.replaceFirst("[^/]+/$", "");
//=> /my/long/path/which/will/never/