I have several very large XML files and I'm trying to find the lines that contain non-ASCII characters. I've tried the following:

grep -e "[\x{00FF}-\x{FFFF}]" file.xml

But this returns every line in the file, regardless of whether the line contains a character in the range specified.

Do I have the syntax wrong or am I doing something else wrong? I've also tried:

egrep "[\x{00FF}-\x{FFFF}]" file.xml 

(with both single and double quotes surrounding the pattern).

link|improve this question

ASCII characters are only one byte long, so unless the file is unicode there should be no characters above 0xFF. – zdav Jun 8 '10 at 20:53
feedback

5 Answers

up vote 6 down vote accepted

You can use the command:

grep --color='auto' -P -n "[\x80-\xFF]" file.xml

This will give you the line number, and will highlight non-ascii chars in red.

link|improve this answer
feedback

The following works for me:

grep -P "[\x80-\xFF]" file.xml

Non-ASCII characters start at 0x80 and go to 0xFF when looking at bytes. Grep (and family) don't do Unicode processing to merge multi-byte characters into a single entity for regex matching as you seem to want. The -P option in my grep allows the use of \xdd escapes in character classes to accomplish what you want.

link|improve this answer
1  
For the view that might not immediately know how to call this over multiple files, just run: find . -name *.xml | xargs grep -P "[\x80-\xFF]" – David Mohundro Nov 17 '10 at 3:30
1  
This does return a match, but there is no indication of what the character is and where it is. How does one see what the character is, and where it is? – Faheem Mitha Oct 20 '11 at 6:25
Adding the "-n" will give the line number, additionally non-visible chars will show as a block at the terminal: grep -n -P "[\x80-\xFF]" file.xml – fooMonster Oct 20 '11 at 12:53
feedback

The easy way is to define a non-ASCII character... as a character that is not an ASCII character.

LC_COLLATE=C grep '[^ -~]' file.xml

Add a tab after the ^ if necessary.

(The LC_COLLATE=C at the beginning is to avoid nasty surprises about the meaning of character ranges in many locales.)

link|improve this answer
feedback

Strangely, I had to do this today! I ended up using Perl because I couldn't get grep/egrep to work (even in -P mode). Something like:

cat blah | perl -en '/\xCA\xFE\xBA\xBE/ && print "found"'
link|improve this answer
feedback

In perl

cat fileName | perl -ane '{ if(m/[[:^ascii:]]/) { print  } }' > newFile
link|improve this answer
Near -1 for the Useless Use of Cat. See patrmaps.org/era/unix/award.html – tripleee Feb 22 at 14:06
feedback

Your Answer

 
or
required, but never shown

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