Java的split方法会生成空的第一个字符串。

huangapple go评论70阅读模式
英文:

Java split generates empty first string

问题

这样的路径是 /root/folder1/subfolder1/subfolder2。使用 split() 方法会生成空的第一个元素。如何避免第一个空字符串?

英文:

There is path like this /root/folder1/subfolder1/subfolder2. Using split() method it generates empty first element. How can first empty string be avoided ?

答案1

得分: 2

去掉调用 split("/") 前面的斜杠 /

可以使用例如 replaceFirst("^/", "") 来实现这一点。

英文:

Strip the leading / before calling split("/").

Use e.g. replaceFirst("^/", "") to do that.

huangapple
  • 本文由 发表于 2020年9月27日 08:46:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/64083787.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定