Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following will replace ASCII control characters (shorthand for [\x00-\x1F\x7F]):

my_string.replaceAll("\\p{Cntrl}", "?");

The following will replace all ASCII non-printable characters (shorthand for [\p{Graph}\x20]), including accented characters:

my_string.replaceAll("[^\\p{Print}]", "?");

However, neither works for Unicode strings. Does anyone has a good way to remove non-printable characters from a unicode string?

share|improve this question
Note that "non-printable" and "invisible" are different things. Whitespace (tab, space, newline, ...) are "invisible" but not non-printable. – Joachim Sauer Jun 1 '11 at 9:31
ok, i mean non-printable – arnaud Jun 1 '11 at 9:39
Just as an addendum: the list of Unicode General Categories can be found in UAX #44 – McDowell Jun 1 '11 at 10:32

4 Answers

up vote 16 down vote accepted

my_string.replaceAll("\\p{C}", "?");

See this for in depth Unicode regex: http://www.regular-expressions.info/unicode.html java.util.regexPattern/String.replaceAll supports them.

share|improve this answer
In java 1.6 at least, there is no support for them. download.oracle.com/javase/6/docs/api/java/util/regex/… ...I also tried your line out, and besides of missing a backslash, it plainly simply doesn't work. – arnaud Jun 1 '11 at 10:00
This works: char c = 0xFFFA; String.valueOf(c).replaceAll("\\p{C}", "?"); also in the javadoc for pattern look in the Unicode support section, says it supports the categories – Op De Cirkel Jun 1 '11 at 10:18
You are right! I apologize. I didn't noticed it because I had to add the Zl Zp categories since those were mostly the source of issues. It works perfectly. Could you please make a mini edit to your post so I can vote it up again? – arnaud Jun 1 '11 at 10:29

You may be interested in the Unicode categories "Other, Control" and possibly "Other, Format" (unfortunately the latter seems to contain both unprintable and printable characters).

In Java regular expressions you can check for them using \p{Cc} and \p{Cf} respectively.

share|improve this answer
Well, too bad java expressions don't have them, but at least I got the list right now... better than nothing. thanks – arnaud Jun 1 '11 at 9:56

Have a look to Junidecode library

share|improve this answer

Try this,

String my_string = "aaaap{Cntrl}]aaa";
my_string = my_string.replaceAll("p\\{Cntrl\\}\\]", "?");
System.out.println(my_string); //output given: aaaa?aaa
share|improve this answer
what negative vote? This thing worked for me.. If this is not what u are looking for, then give me some more code. How come you blindly give me negative voting. – Max Jun 1 '11 at 9:31
please read the question again. The question is about invisible characters like u+2028 for instance. PS: the first vote wasn't from me – arnaud Jun 1 '11 at 9:34
ohh.. my bad :( – Max Jun 1 '11 at 9:35
obviously, giving an example is difficult since these characters cannot be seen. What could be provided at best are hexadecimal traces. – arnaud Jun 1 '11 at 9:36
@amaud: if you wanted to give a sample, you could encode the offending characters using Unicode escapes such as \u0020. – Joachim Sauer Jun 1 '11 at 12:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.