45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:python如何过滤字符串中不属于指定集合字符?

python如何过滤字符串中不属于指定集合字符?

2015-07-23 05:29:53 来源:www.45fan.com 【

python如何过滤字符串中不属于指定集合字符?

本文实例讲述了python过滤字符串中不属于指定集合中字符的类。分享给大家供大家参考。具体如下:

# -*- coding: utf-8 -*-
import sets
class Keeper(object):
 def __init__(self, keep):
  self.keep = sets.Set(map(ord, keep))
 def __getitem__(self, n):
  if n not in self.keep:
   return None
  return unichr(n)
 def __call__(self, s):
  return s.translate(self)
makefilter = Keeper
if __name__ == '__main__':
 just_vowels = makefilter('aeiouy')
 print just_vowels(u'four score and seven years ago')
 # 输出: ouoeaeeyeaao
 print just_vowels(u'tiger, tiger burning bright')
 # 输出: ieieuii

希望本文所述对大家的Python程序设计有所帮助。


本文地址:http://www.45fan.com/a/question/15373.html
Tags: python 字符串 过滤
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部