For instance I have a string like this : abc123[*]xyz[#]098[~]f9e
[*] , [#] and [~] represents 3 different non-printable characters. How can I replace them with "X" in Java ?
Frank
|
For instance I have a string like this : abc123[*]xyz[#]098[~]f9e [*] , [#] and [~] represents 3 different non-printable characters. How can I replace them with "X" in Java ? Frank
| |||
|
feedback
|
|
I'm not sure if I understand your questions. If you can formulate it better, I think a simple regular expression replacement may be all that you need.
REGEX depends on what you need:
| |||
|
feedback
|
|
This SO Q&A shows a way to test, in Java, whether a given character is printable. As you surely know, in Java you cannot directly alter a string: rather, you make a new StringBuilder object initialized with the string, alter the string builder object (e.g. with | |||
|
feedback
|