Tagged Questions
The non-printable tag has no wiki summary.
13
votes
5answers
17k views
Stripping non printable characters from a string in python
I use to run
$s =~ s/[^[:print:]]//g;
on Perl to get rid of non printable characters.
In Python there's no POSIX regex classes, and I can't write [:print:] having it mean what I want. I know of ...
6
votes
2answers
4k views
printable char in java
Does anyone knows how to detect printable characters in java?
After a while ( trial/error ) I get to this method:
public boolean isPrintableChar( char c ) {
Character.UnicodeBlock block ...
4
votes
4answers
145 views
Conversion of strings containing non printable characters
I would like to convert a byte array containing non printable characters to string for my application. When I convert back to byte array, the contents of the array should remain the same as I found ...
4
votes
3answers
485 views
How do I replace or find non-printable characters in vim regex?
I have a file with some non-printable characters that come up as ^C or ^B, I want to find and replace those characters, how do I go about doing that?
4
votes
2answers
715 views
String corruption and nonprintable characters using XML::Twig in Win32 Perl
This is a really weird problem. It's taken me practically all day to whittle it down to a small executable script that demonstrates the problem fully.
Problem Summary: I'm using XML::Twig to pull ...
3
votes
2answers
2k views
How to detect and replace non-printable characters in a string using Java?
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
3
votes
3answers
2k views
Detect non-printable characters in JavaScript
Is it possible to detect binary data in JavaScript?
I'd like to be able to detect binary data and convert it to hex for easier readability/debugging.
After more investigation I've realized that ...
1
vote
2answers
347 views
Locate files which ONLY contain printable characters in bash script
I'm trying to write a bash script that looks at a directory full of files and categorises them as either plaintext or binary. A file is plaintext if it ONLY contains plaintext characters, otherwise ...
0
votes
1answer
27 views
Lua: Find hex-value in string
I'm trying to find the hexadecimal non-printable character 00h within a string with Lua. I tried it with an escape character and as a result I get the same location I start in (that's a printable ...
0
votes
1answer
195 views
How do I display non printable chars in rich edit?
is there a way how to display any of the non-printable characters in TRichEdit control ? Or at least paragraph at the end of each line ?
I've made a quick preview to the rich edit messages but can't ...
0
votes
4answers
785 views
Using MySQL LOAD DATA INFILE with nonprintable character delimiters
I have some vendor data that has the SOH (ASCII character 1) as the field delimiter and STX (ASCII character 2) as the record delimiter. Is it possible to load this data with LOAD DATA INFILE without ...
-1
votes
3answers
51 views
serialization ArrayList Java
I want to serialize the Arrylist of type ArrayList<Class>
and the class contains two arrylist of primitive type
public class Keyword {
private long id;
private long wid;
private ...
-1
votes
2answers
30 views
How to stop users from copying or printing text from my web page?
I have a web page (on .Net platform, with C#) with text content and I would like to block users from copying the text or printing the document.
If the user is hard out on attaining a copy of the page, ...