Java substring a local variable inside a while loop

前端 未结 3 1196
余生分开走
余生分开走 2021-01-24 10:41

I have been trying to construct a while loop for looping through a string when it contains a \'pattern\' i\'m looking for. The string is a local variable, declared just above th

3条回答
  •  醉梦人生
    2021-01-24 11:25

    String is immutable in java

     modifiedOnlineList = modifiedOnlineList.substring(tempFirstOccurence + 2);
    

    You have to receive the new String Object returned by substring method.

     modifiedOnlineList.substring(tempFirstOccurence + 2);
     System.out.println(modifiedOnlineList);   // still old value 
    

    when you receive that

     modifiedOnlineList = modifiedOnlineList.substring(tempFirstOccurence + 2);
     System.out.println(modifiedOnlineList);   // now re assigned to substring value 
    

提交回复
热议问题