How could I replace the "String" $1 in Java? I tried this but this don't replace it:
System.out.println(someHTMLCodeAsString.replaceAll("$1", "REPLACED"));
|
How could I replace the "String"
|
|||||
|
|
The $ is being interpreted as regex instead of as a character (it means 'end of line'). Try |
|||
|
|
You Can Simply use this method:
That replace All "$" to "REPLACED" simply! |
|||
|
|
|
From [Java API docs][1] : "Note that backslashes () and dollar signs ($) in the replacement string may cause the results to be different than if it were being treated as a literal replacement string; see Matcher.replaceAll. Use Matcher.quoteReplacement(java.lang.String) to suppress the special meaning of these characters, if desired." [1]: http://download.oracle.com/javase/6/docs/api/java/lang/String.html#replaceAll(java.lang.String, java.lang.String) |
|||
|
|
|
You've gotten bits and pieces of a response. Peter Lawrey is correct. You need to escape the $ with a regex escape not a string escape, thus the double \. System.out.println(someHTMLCodeAsString.replaceAll("\\$1", "REPLACED")); |
|||
|
|
Or, let the regex library handle it for you:
|
|||
|
|