python 正则表达式中怎么提取并修改已匹配到的字符串?

比如。我要在一段英语句子中找到以a开头的单词,并在单词末尾加上hey?求大神!... 比如。我要在一段英语句子中找到以a开头的单词,并在单词末尾加上hey?求大神! 展开
 我来答
lpe234
推荐于2016-06-07 · TA获得超过2778个赞
知道小有建树答主
回答量:1250
采纳率:50%
帮助的人:565万
展开全部
# -*- coding: utf-8 -*-

__author__ = 'lpe234'
__date__ = '2014-11-16'

text = """
I had no real home, no money, no job, and no friends that cared.
Not one person had even sent me a sympathy card for my loss.
"""


def main():
    global text
    text_list = text.split()
    for index, word in enumerate(text_list):
        word = word.lower()
        if word.startswith('a'):
            text_list[index] = word+'hey'
    text = ' '.join(text_list)
    print text

if __name__ == '__main__':
    main()

and the results:

C:\Python27\python.exe D:/ofshion_min_spider/scrapper/djangoo/find_a.py
I had no real home, no money, no job, andhey no friends that cared. Not one person had even sent me ahey sympathy card for my loss.

Process finished with exit code 0
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式