I have control character in my database table. I am retriving this data and sending the JSON response to client. How we can ignore the control character at time of sending the response in Java.
Asked
Active
Viewed 66 times
0
-
1Could you provide some example, what is your code, etc. – tmucha Feb 12 '18 at 12:18
-
Why not just preprocess the value? E.g. `string.replaceAll("\\W", "")` – kaqqao Feb 12 '18 at 13:17