gpt4 book ai didi

python 正则表达式 txt

转载 作者:太空宇宙 更新时间:2023-11-04 03:00:14 25 4
gpt4 key购买 nike

我有一个 1.txt:

I. Introduction to Text Mining 1
I.1 Defining Text Mining 1
I.2 General Architecture of Text Mining Systems 13

II. Core Text Mining Operations 19
II.1 Core Text Mining Operations 19
II.2 Using Background Knowledge for Text Mining 41
II.3 Text Mining Query Languages 51

III. Text Mining Preprocessing Techniques 57
III.1 Task-Oriented Approaches 58
III.2 Further Reading 62

IV. Categorization 64
IV.1 Applications of Text Categorization 65
IV.2 Definition of the Problem 66
IV.3 Document Representation 68

我想得到这样的结果:

I. Introduction to Text Mining 1.1
I.1 Defining Text Mining 1.1
I.2 General Architecture of Text Mining Systems 13.1

II. Core Text Mining Operations 19.1
II.1 Core Text Mining Operations 19.1
II.2 Using Background Knowledge for Text Mining 41.1
II.3 Text Mining Query Languages 51.1
...

两个变化:

1. I I.1 use the TAB.
2. all number in the end plus 0.1

我尝试使用 pandas,但它不起作用。我尝试其他方式,但我不知道如何编写下一个程序:

# -*- coding: utf-8 -*-
import re

f=open("D:/Downloads/1.txt")
page_list = []
content=[]
for line in f:
if re.search('(\d+)$',line) !=None:
page_list.append(re.search('(\d+)$',line).group())
if re.search('^(.*\.\d+)',line) !=None:
content.append(re.search('^(.*\.\d+)',line).group())
str=map(lambda x:x+'.1',page_list)
print str
con=map(lambda x:'\t'+x,content)
print con

程序的结果:

['1.1', '1.1', '13.1', '19.1', '19.1', '41.1', '51.1']
['\tI.1', '\tI.2', '\tII.1', '\tII.2', '\tII.3']

最佳答案

你可以试试这个:

(.*)(\d+)

并替换为:

\1\2.1

Explanation

示例代码:

import re

regex = r"(.*)(\d+)"

test_str = ("I. Introduction to Text Mining 1\n"
"I.1 Defining Text Mining 1\n"
"I.2 General Architecture of Text Mining Systems 13\n\n"
"II. Core Text Mining Operations 19\n"
"II.1 Core Text Mining Operations 19\n"
"II.2 Using Background Knowledge for Text Mining 41\n"
"II.3 Text Mining Query Languages 51\n\n"
"III. Text Mining Preprocessing Techniques 57\n"
"III.1 Task-Oriented Approaches 58\n"
"III.2 Further Reading 62\n\n"
"IV. Categorization 64\n"
"IV.1 Applications of Text Categorization 65\n"
"IV.2 Definition of the Problem 66\n"
"IV.3 Document Representation 68\n\n")

subst = "\\1\\2.1"


result = re.sub(regex, subst, test_str, 0, re.MULTILINE)

if result:
print (result)

示例输出:

I. Introduction to Text Mining 1.1
I.1 Defining Text Mining 1.1
I.2 General Architecture of Text Mining Systems 13.1

II. Core Text Mining Operations 19.1
II.1 Core Text Mining Operations 19.1
II.2 Using Background Knowledge for Text Mining 41.1
II.3 Text Mining Query Languages 51.1

III. Text Mining Preprocessing Techniques 57.1
III.1 Task-Oriented Approaches 58.1
III.2 Further Reading 62.1

IV. Categorization 64.1
IV.1 Applications of Text Categorization 65.1
IV.2 Definition of the Problem 66.1
IV.3 Document Representation 68.1

关于python 正则表达式 txt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41142797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com