This question already has an answer here:
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());
}
That should usually replace those both strings, but it does not. Does anyone has an idea?
You don't need to escape
*
character. Difference betweenreplace
andreplaceAll
is thatreplace
escapes any regex metacharacters for us automatically:Analogy:
If you have an immutable file on your desktop. To make some changes you do a copy and replace. This leads to a state wherein you can not access the old file unless you have a backup.
In the same way in most computer languages like
Java
,JavaScript
,python
andC#
thereplace
method does not replace/modify the String. It only operates over the former String and returns a new String with all the changes.Now if you really want to store the changes you'll need to get the returned String in the same variable (if your situation permits) or in a new variable.
String is immutable, which means that the html reference doesn't change, rather the replace method returns a new String object that you have to assign.
as said you are discarding the results and replace doesn't take a regex only a literal char sequence to be replaced so you don't need to escape in the delimiter
but replaceAll and replaceFirst do take a regex string (bad design that)
and as an aside it's advisable to use
Patter.quote(String)
andMatcher.quoteReplacement(String)
to ensure no weird things are happening when using regex (it's a bit easier and ensures there's no error in escaping the chars)here's for when only one occurrence must be replaced
and here's for when multiple occurrences must be replaced
The replace method returns its result, which you're discarding.
String is an immutable type,so we should new a String object to save the new String returned by the replace Method