我有以下字符串' user / hello' '实施例/第一' ,' stackoverflow / login'等
我想修改它如下user / 1 / hello,example / 1 / first,stackoverflow / 1 / login。
我想先替换' /'与' / 1 /'
我尝试过replaceFirst,但我无法获得预期的结果。
String temp = "user/hello";
temp.replaceFirst("/","/1/");
答案 0 :(得分:0)
您需要将replaceFirst的结果分配回temp
String temp = "user/hello";
temp = temp.replaceFirst("/","/1/");