作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从我的原始路径中删除一些字符串,但我无法从我的原始字符串中替换另一个字符串
这是我的代码
String path="contentPath =C/Users/consultant.swapnilb/Desktop/swapnil=Z:/Build6.0/Digischool/";
String a=path.substring(path.lastIndexOf("="), path.length());
path.replace(a, "");
System.out.println("a---"+a);
System.out.println("path---"+path);
我只想从我的原始路径中删除 =Z:/Build6.0/Digischool/
。
最佳答案
参见 String#replace
:
public String replace(CharSequence target, CharSequence replacement)
↑
它返回一个String
类型的新对象,你应该分配结果:
path = path.replace(a, "");
但是,您可以简单地执行以下操作:
path = path.substring(0, path.lastIndexOf("="));
关于java - 如何从另一个字符串替换一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21375169/
我是一名优秀的程序员,十分优秀!