鱼C论坛

 找回密码
 立即注册
查看: 4897|回复: 2

[已解决]本人小白,希望程序删除文本中两个字符串之间的所有内容,但是运行时报错,求大神指点

[复制链接]
发表于 2017-3-7 22:36:03 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
file = open('字符串的方法及注释.txt')

f = file.read(-1)     #str
useful = []         #list
useful_str = ''
count = 1

def delet_section(front, behind, fo):
    useless = ''
    useless = fo.split(front, 1)[1].split(behind ,1)[0]
    print(front + useless + behind)
    useful_str = fo.replace(front + useless + behind, '')
    print('一次')
    return useful_str

str1 = input('请输入字符1:')
str2 = input('请输入字符2:')
if len(str1) * len(str2) == 1:
    count = f.count(str1) - 1
    print('共有%d个' % count)
    while count != -1:
        useful_str = delet_section(str1, str2, f)
        f = useful_str
        count -= 1
    useful_file = open('有用的文字.txt', 'w')
    useful_file.write(useful_str)
    useful_file.close()
else: print('你输入的字符串长度不为一')

f.close()

运行结果:
runfile('C:/Users/messi/Desktop/python练习程序/untitled0.py', wdir='C:/Users/messi/Desktop/python练习程序')

请输入字符1:<

请输入字符2:>
共有26个
</td>
一次
<td width="362">
一次
<br />
一次
</tr>
一次
<tr>
一次
<td width="206">
一次
Traceback (most recent call last):

  File "<ipython-input-1-508f3a69f603>", line 1, in <module>
    runfile('C:/Users/messi/Desktop/python练习程序/untitled0.py', wdir='C:/Users/messi/Desktop/python练习程序')

  File "D:\Users\messi\Anaconda3\lib\site-packages\spyder\utils\site\sitecustomize.py", line 866, in runfile
    execfile(filename, namespace)

  File "D:\Users\messi\Anaconda3\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile
    exec(compile(f.read(), filename, 'exec'), namespace)

  File "C:/Users/messi/Desktop/python练习程序/untitled0.py", line 23, in <module>
    useful_str = delet_section(str1, str2, f)

  File "C:/Users/messi/Desktop/python练习程序/untitled0.py", line 11, in delet_section
    useless = fo.split(front, 1)[1].split(behind ,1)[0]

IndexError: list index out of range
最佳答案
2017-3-7 23:05:57
while count != -1 这一判定条件不对 如果你每次替换一对<>最多也就26 只要运行26次 但是你实际运行要27次了才会停下循环
然后你函数中用的是replace,这个会将你指定的字符串全部替换除非你改成fo.replace(front + useless + behind, '',1)才替换一次,这样会导致后边循环一进来fo.split(front, 1)分割后只有一个元素,但你用fo.split(front, 1)[1]这样就会导致溢出操作
要么在while中的count每次重新统计直到为0要么把replace改成每次只替换一次
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-3-7 23:05:57 | 显示全部楼层    本楼为最佳答案   
while count != -1 这一判定条件不对 如果你每次替换一对<>最多也就26 只要运行26次 但是你实际运行要27次了才会停下循环
然后你函数中用的是replace,这个会将你指定的字符串全部替换除非你改成fo.replace(front + useless + behind, '',1)才替换一次,这样会导致后边循环一进来fo.split(front, 1)分割后只有一个元素,但你用fo.split(front, 1)[1]这样就会导致溢出操作
要么在while中的count每次重新统计直到为0要么把replace改成每次只替换一次
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2017-3-7 23:43:12 | 显示全部楼层
lumber2388779 发表于 2017-3-7 23:05
while count != -1 这一判定条件不对 如果你每次替换一对最多也就26 只要运行26次 但是你实际运行要27次了 ...

谢谢大神,我的程序成功了,大神有没有其他方法实现这个功能?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-22 17:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表