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 detecting binary data is not the right question, because binary data can contain regular characters, and non-printable characters.

Outis's question and answer (/[\x00-\x1F]/) is really the best we can do in an attempt to detect binary characters.

Note: You must remove line feeds and possibly other characters from your ascii string sequence for the check to actually work.

link|improve this question

to detect where? – Rubens Farias Nov 5 '09 at 1:11
feedback

3 Answers

up vote 7 down vote accepted

If by "binary", you mean "contains non-printable characters", try:

/[\x00-\x1F]/.test(data)

If whitespace is considered non-binary data, try:

/[\x00-\x08\x0E-\x1F]/.test(data)

If you know the string is either ASCII or binary, use:

/[\x00-\x1F\x80-\xFF]/.test(data)

or:

/[\x00-\x08\x0E-\x1F\x80-\xFF]/.test(data)
link|improve this answer
I think you mean regexp.test(data). Also, the tab character is printable. – pimvdb Jul 28 '11 at 15:14
"non-printable" in the sense of the POSIX Locale standard, §7.3.1 (which is the basis for the likes of isprint) as they aren't characters that are printed but rather require the text processor take some special action. You're right in that the OP may want to consider whitespace to be non-binary data. Also, the argument and object for test were indeed swapped. – outis Jul 29 '11 at 1:49
feedback

I think you may find your answer in this article It's pretty heavy-duty though

link|improve this answer
feedback

If you use json2.js or http://www.openjsan.org/doc/k/ke/kevinj/Data/Dump/0.01/lib/Data/Dump.html you don't have to worry about detecting non-printable characters

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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