如何在Python字符串列表中查找出指定字符所在字符串
答案:1 悬赏:0 手机版
解决时间 2021-02-12 21:16
- 提问者网友:几叶到寒
- 2021-02-12 02:19
如何在Python字符串列表中查找出指定字符所在字符串
最佳答案
- 五星知识达人网友:摆渡翁
- 2021-02-12 02:41
re.findall('\\w*{}\\w*'.format(c),','.join(l))
Python 3.5.2 (default, Dec 7 2016, 23:38:49)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> l=['sfdsd','ddff']
>>> c='s'
>>> re.findall('\\w*{}\\w*'.format(c),','.join(l))
['sfdsd']
Python 3.5.2 (default, Dec 7 2016, 23:38:49)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> l=['sfdsd','ddff']
>>> c='s'
>>> re.findall('\\w*{}\\w*'.format(c),','.join(l))
['sfdsd']
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯