Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
935 views
in Technique[技术] by (71.8m points)

split - Detect chinese character using perl?

Is there any way to detect Chinese characters using Perl? And is there any way on how to split Chinese characters with symbol dot '.' perfectly?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Depends on your particular notion of what is a Chinese character. Perhaps you're looking for /p{Script=Hani}/, but if we want to cast our net wide, the following regex pattern will match stuff that occurs in Chinese writing. Restrict if necessary.

use 5.014;
/
    (?: p{Block=CJK_Compatibility}
    |   p{Block=CJK_Compatibility_Forms}
    |   p{Block=CJK_Compatibility_Ideographs}
    |   p{Block=CJK_Compatibility_Ideographs_Supplement}
    |   p{Block=CJK_Radicals_Supplement}
    |   p{Block=CJK_Strokes}
    |   p{Block=CJK_Symbols_And_Punctuation}
    |   p{Block=CJK_Unified_Ideographs}
    |   p{Block=CJK_Unified_Ideographs_Extension_A}
    |   p{Block=CJK_Unified_Ideographs_Extension_B}
    |   p{Block=CJK_Unified_Ideographs_Extension_C}
    )
/x;

Yes, . matches one character. The empty pattern for split DWYM:

use utf8;
split //, '冰淇淋'
# returns ('冰', '淇', '淋')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...