| Author |
non-printable special characters
|
akhter wahab
Ranch Hand
Joined: Mar 02, 2009
Posts: 151
|
|
|
i am writing excel file using jxl library but there are non-printable special characters in the text how can i remove that thanks in advance
|
Start Earning Online||Start Earning Using Java
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32712
|
|
|
Sounds like a job for a regular expression.
|
 |
akhter wahab
Ranch Hand
Joined: Mar 02, 2009
Posts: 151
|
|
i already found two regex but don't know what exactly they are doing here are the both regex
can you please elaborate these regex
Regards
|
 |
Stephan van Hulst
Bartender
Joined: Sep 20, 2010
Posts: 3056
|
|
|
The first one replaces all non-printable characters with the empty string. The second one replaces all control characters (not necessarily every non-printable character) with the empty string.
|
 |
 |
|
|
subject: non-printable special characters
|
|
|