We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f337214 commit ac751efCopy full SHA for ac751ef
currencyconvert.java
@@ -48,7 +48,7 @@ protected void processRequest(HttpServletRequest request, HttpServletResponse re
48
Gson gson = new Gson();
49
Recv st = gson.fromJson(str, Recv.class);
50
String rhs = st.getRhs();
51
- rhs = rhs.replaceAll("�", "");
+ rhs = rhs.replace("�", "");
52
53
/* Check if there are additional words (millions, billions, etc.) and print them */
54
StringTokenizer strto = new StringTokenizer(rhs);
0 commit comments