python中用什么函数读取字符串_我正在寻找一个函数,它可以帮助读取python中特定字符后的文件字符串...

本文介绍了如何使用Python的re模块通过正则表达式在文本文件中逐行查找子串,包括`re.compile()`创建模式、`findall()`全局匹配和`search()`逐行搜索的方法。适合处理文本文件中的特定模式匹配任务。
摘要由CSDN通过智能技术生成

你在打电话吗

readline

两次,覆盖

line

编辑:原来的问题被编辑了,现在的问题略有不同。我关于使用regex的建议仍然有效。

我将使用regex,以及python的内置re模块:

import re

regex = re.compile(r"\\(.+)\.") # Pattern matching anything beween \ and .

with open("test.txt", "r") as file:

results = regex.findall(file.read())

print(results)

# Returns a list of every sub-string bewtween \ and . in the text file.

如果你想一行一行地做:

file = open("test.txt", "r")

line = file.readline()

result = regex.search(line).group(1) # ".group(1)" makes sure the \ and . are not included

print(result)

# then you can continue with the next line

line = file.readline()

result = regex.search(line).group(1)

print(result)

# etc

# You can do this in a loop

# or with file.readlines() which returns a list of all the lines in the file

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值