4
votes
2answers
68 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 usin …
0
votes
3answers
90 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 …
0
votes
3answers
94 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 …
5
votes
5answers
3k 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 …
2
votes
2answers
962 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 …
0
votes
9answers
1k views
Finding non-prime numbers in C++
So I have a range of random number. The range is actually determined by the user but it will be up to 1000 integers. They are placed in this:
vector<int> n
and the value …
