如何计算文件中唯一字符的数量?

时间:2012-03-24 01:13:05

标签: python ruby perl bash

给定一个UTF-8文件,包含各种语言的字符,如何获得它包含的唯一字符数的计数,同时排除选定数量的符号(例如:“!”,“@”, “#”,“。”)从这个计数?

9 个答案:

答案 0 :(得分:8)

这是一个bash解决方案。 :)

bash$ perl -CSD -ne 'BEGIN { $s{$_}++ for split //, q(!@#.) }
                     $s{$_}++ || $c++ for split //;
                     END { print "$c\n" }' *.utf8

答案 1 :(得分:5)

在Python中:

import itertools, codecs

predicate = set('!@#.').__contains__
unique_char_count = len(set(itertools.ifilterfalse(
                      predicate, itertools.chain.from_iterable(codecs.open(filename, encoding="UTF-8")))))

当您遍历文件时,您会得到行。 chain将它们连接在一起,所以迭代它就会得到字符。 ifilterfalse删除符合条件的字符,条件定义为一组不允许字符的成员资格。

没有itertools:

import codecs
disallowed = set('!@#.')
unique_char_count = len(set(char for line in codecs.open(filename, encoding="UTF-8") for char in line 
                              if char not in disallowed))

使用设置操作:

import codecs
unique = set()
any(unique.update(line) for line in codecs.open(filename, encoding="UTF-8"))
unique.difference_update('!@#.')
unique_char_count = len(unique)

答案 2 :(得分:3)

Ruby,使用sets:

require 'set'
string = 'ababbbababbabcdcccdbbaaba'
ignore = 'c'
(Set.new(string.chars) - Set.new(ignore.chars)).count
# => 3 
  • string是输入字符串
  • ignore是一个包含要忽略的字符的字符串
  • string.chars是字符串中的字符列表
  • Set.new制作了一套
  • -给出两组之间的区别
  • count是结果集中的元素数量

答案 3 :(得分:3)

另一个红宝石:

#encoding: utf-8
string = '@étude#@étude ฒณ!'
ignore = '!@#.'
p string.chars.to_a.uniq.join.delete(ignore).size #=>8

答案 4 :(得分:2)

使用Perl one-liner:

echo -e "aba\ncfg!ഡ.#g" | perl -C7 -ne 'for(split(//)){if ($_ !~ /[!@#.]/) { print $_."\n"}}' | sort | uniq | wc -l

输出 7

如果你想忽略换行符:

echo -e "aba\ncfg!ഡ.#g" | perl -C7 -ne 'for(split(//)){if ($_ !~ /[!@#.\n]/) { print $_."\n"}}' | sort | uniq | wc -l

输出 6

答案 5 :(得分:2)

我只是提出我的无语言要求的选项:

sed 's/[!@#.]//g' /path/to/file | sed 's/./\0\n/g' | sort -u | wc -l

答案 6 :(得分:2)

经过3个小时的研究,我在python中做到了这一点,但我做到了

fname = "temp.txt"
num_lines = 0
num_words = 0
num_chars = 0
num_uniq  = 0
a = []
exclude = ",.@#$"
with open(fname, 'r') as f:
    for line in f:
        words = line.split()
        for word in words:
                char = list(word)
                a = a + char
        num_lines += 1
        num_words += len(words)
        num_chars += len(line)
print "Lines:%s\nWords:%s\nChars:%s" % (num_lines, num_words, num_chars)
num_uniq =  len(set(a)-set(exclude))
print "Unique Characters:%d" % (num_uniq)

这是输出

Lines:6
Words:74
Chars:385
Unique Characters:26

答案 7 :(得分:1)

在python中使用sets。 假设您想在文件url.txt中找到唯一的字符

f=open('url.txt')
a=''
for x in f:
    x=x.split(' ')
    for y in x:
     a+=y
unique=set(a)-set('@!#.')  #add the characters that you wanna neglect in the second set
print(unique)
print('unique characters : ',len(unique))

让我们说url.txt包含:

Google --!  google.com  --!  coolest search engine 

facebook --!  facebook.com  --!  biggest social network 

yahoo --!  yahoo.com  --!  biggest web portal 

输出将是:

{'a', 'G', 'm', '\n', 'n', 'c', 'b', 'e', 'g', 'f', 'i', 'h', 'k', '-', 'l', 'o', 'p', 's', 'r', 't', 'w', 'y'}
unique characters :  22

答案 8 :(得分:0)

另一种选择:

filename='/somewhere/my-file-in-utf8'

iconv -f UTF8 -t UTF16 $filename | tail -c +3 |  \
perl -pi -e "s/\x00\@//g; s/\x00\!//g; s/\x00\#//g; s/\x00\.//g;" | \
od | cut -b 8- | xargs -n 1 | sort | uniq | wc -l