Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to match chinese characters with grep?

Tags:

grep

vim

cjk

It is verified that [\u4e00-\u9fff] can match chinese characters in vim.

:%g/[\u4e00-\u9fff]/d

The command above can delete all the lines containing chinese characters.

ls  /tmp/test
ktop 1_001.png.bak
fonts.dir.bak
New
Screenshot from 2016-09-12 16:50:29.png.bak
你好

Now i want to extract files whose name is chinese characters.

ls  /tmp/test |grep -P  '[\x4e\x00-\x9f\xff]'  

The command can't get files whose name is chinese characters.
How to fix it?

ls /tmp/test | grep -v '[a-z]' can get it ,but it is what i want.

like image 361
showkey Avatar asked Dec 25 '16 01:12

showkey


1 Answers

To match just lines (filenames) that have Han (Chinese) characters, you can use [\p{Han}] :

ls  /tmp/test | grep -P '[\p{Han}]'

\p{Han} is one Unicode-script category property usable in any PCRE-supporting engine:

\p{Common} \p{Arabic} \p{Armenian} \p{Bengali} \p{Bopomofo}
\p{Braille} \p{Buhid} \p{Canadian_Aboriginal} \p{Cherokee}
\p{Cyrillic} \p{Devanagari} \p{Ethiopic} \p{Georgian} \p{Greek}
\p{Gujarati} \p{Gurmukhi} \p{Han} \p{Hangul} \p{Hanunoo} \p{Hebrew}
\p{Hiragana} \p{Inherited} \p{Kannada} \p{Katakana} \p{Khmer} \p{Lao}
\p{Latin} \p{Limbu} \p{Malayalam} \p{Mongolian} \p{Myanmar} \p{Ogham}
\p{Oriya} \p{Runic} \p{Sinhala} \p{Syriac} \p{Tagalog} \p{Tagbanwa}
\p{TaiLe} \p{Tamil} \p{Telugu} \p{Thaana} \p{Thai} \p{Tibetan}
like image 134
sideshowbarker Avatar answered Sep 26 '22 11:09

sideshowbarker