How to replace a substring of a string

You need to use return value of replaceAll() method. replaceAll() does not replace the characters in the current string, it returns a new string with replacement. String objects are immutable, their values cannot be changed after they are created. You may use replace() instead of replaceAll() if you don’t need regex. String str = “abcd=0; efgh=1”; String replacedStr = … Read more