Last active
December 14, 2015 05:29
-
-
Save physacco/5035761 to your computer and use it in GitHub Desktop.
Chinese Word Counter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
# Name: Chinese Word Counter | |
# Description: This is a word counter for Chinese. It reads text from stdin, | |
# filters white spaces (including the full-width Chinese blank-space character), | |
# and then counts the remaining characters. In my tests, it usually produces | |
# the same result as WPS. It may be useful for some writers. | |
# Example: zwc.py < foo.txt | |
# Author: physacco | |
# Date: 2011-02-08 | |
import sys, re | |
raw_data = sys.stdin.read() | |
Bytes = len(raw_data) | |
string = raw_data.decode('utf-8') | |
Chars = len(string) | |
visible_chars = re.sub(ur'[\s\u3000]+', '', string) | |
VisChars = len(visible_chars) | |
print "%d words | %d chars | %d bytes" % (VisChars, Chars, Bytes) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment