Troubleshooting Java String Replace Issue
When working with Java strings, it's important to remember that strings are immutable. This means that any changes made to a string create a new string object rather than modifying the existing one.
Consider the following code:
String delimiter = "\*\*"; String html = "<html><head></head><body>**USERNAME** AND **PASSWORD**</body></html>"; Map<String, String> mp = new HashMap<String, String>(); mp.put("USERNAME", "User A"); mp.put("PASSWORD", "B"); for (Entry<String, String> entry : mp.entrySet()) { html.replace(delimiter + entry.getKey()+ delimiter, entry.getValue()); }
You may expect this code to replace the "USERNAME" and "PASSWORD" placeholders in the HTML string with values from the map. However, this doesn't happen because the replace() method doesn't modify the existing string. Instead, it creates a new string with the replacements made.
To solve this issue, you need to assign the new string to the html variable:
html = html.replace(delimiter + entry.getKey()+ delimiter, entry.getValue());
By doing this, you'll create a new string that includes the replacements and assign it to the html reference. This way, the changes will be reflected in the original html string.
The above is the detailed content of Why Isn't My Java String Replace Method Working?. For more information, please follow other related articles on the PHP Chinese website!