美文网首页
Python正则表达式

Python正则表达式

作者: 光头披风侠 | 来源:发表于2019-06-03 16:20 被阅读0次

Python正则表达式

1. 主要作用

在某个大文本里搜索需要的字段

2.所需文本

poem.txt

Very quietly I take my leave

As quietly as I came here;

Quietly I wave good-bye

To the rosy clouds in the western sky.

The golden willows by the riverside

Are young brides in the setting sun;

Their reflections on the shimmering waves

Always linger in the depth of my heart.

The floating heart growing in the sludge

Sways leisurely under the water;

In the gentle waves of Cambridge

I would be a water plant!

That pool under the shade of elm trees

Holds not water but the rainbow from the sky;

Shattered to pieces among the duckweeds

Is the sediment of a rainbow-like dream?

To seek a dream? Just to pole a boat upstream

To where the green grass is more verdant;

Or to have the boat fully loaded with starlight

And sing aloud in the splendour of starlight.

But I cannot sing aloud

Quietness is my farewell music;

Even summer insects help silence for me

Silent is Cambridge tonight!

Very quietly I take my leave

As quietly as I came here;

Gently I flick my sleeves

Not even a wisp of cloud will I bring away

3.代码实现

1.导入re库

import re

2.导入文件

text = ""
file = open("poem.txt")
for line in file:
    text=text+line
file.close()

3.文本操作

  • 在text中找所有的“to”

    result = re.findall("to",text)
    print result
    
  • 以后根据需求补充

4. 其他注意

  • 正则表达式不仅能处理字符串数据也可以处理数值数据

相关文章

  • 正则表达式

    Python正则表达式初识(一) Python正则表达式初识(二) Python正则表达式初识(三) Python...

  • 正则表达式

    Python:正则表达式Python:正则表达式

  • Python正则表达式指南

    Python正则表达式指南 本文介绍了Python对于正则表达式的支持,包括正则表达式基础以及Python正则表达...

  • Python爬虫(十)_正则表达式

    本篇将介绍python正则表达式,更多内容请参考:【python正则表达式】 什么是正则表达式 正则表达式,又称规...

  • python正则表达式

    本篇将介绍python正则表达式,更多内容请参考:【python正则表达式】 什么是正则表达式 正则表达式,又称规...

  • [转]python正则表达式(一) 函数使用

    原文:python | 史上最全的正则表达式 更全的正则表达式处理函数:在python中使用正则表达式(一) 0....

  • Python正则表达式

    python正则表达式

  • Python正则表达式用法详解

    搞懂Python 正则表达式用法 Python 正则表达式 正则表达式是一个特殊的字符序列,它能帮助你方便的检查一...

  • Python正则表达式指南

    本文介绍了Python对于正则表达式的支持,包括正则表达式基础以及Python正则表达式标准库的完整介绍及使用示例...

  • Python处理正则表达式超时的办法

    title: Python处理正则表达式超时的办法tags: [python3, 正则表达式超时, re模块]da...

网友评论

      本文标题:Python正则表达式

      本文链接:https://www.haomeiwen.com/subject/ncocxctx.html