python删除word表格中的某一行_Word:使用Python删除表和标题之间的行

1586010002-jmsa.png

I have a scenario in which there is a Heading/Constant Text like "Call Tree:" present all over the Word document and after that there are some lines, and once the line are over, there is a Table. So I want the lines between the table and the Heading/Constant Text "Call Tree:" to be deleted using python/win32 component.

For Example :

Input is :

...

Call Tree :

Line 1 ...

Line 2 ...

....

....

....

....

Line N ....

Table # 1

.....

Output is (i.e. all the lines in between the table and "Call Tree" are deleted):

...

Call Tree :

Table # 1

.....

I'm not sure, if there is any way by which I can select multiple lines between a Constant Text i.e "Call Tree" and a Table.

I know, that selection of a line and deletion can be done using this :

..

app = win32com.client.DispatchEx("Word.Application")

app.Visible = 0

app.DisplayAlerts = 0

# select a Text

app.Selection.Find.Execute("TEXT TO BE SELECTED")

# extend it to end

app.Selection.EndKey(Unit=win32com.client.constants.wdLine,Extend=win32com.client.constants.wdExtend)

# check what has been selected

app.Selection.Range()

# and then delete it

app.Selection.Delete()

..

But I'm not sure, how to select multiple lines like this, with this criteria.

Any idea/suggestion on this ?

解决方案

You can iterate over the lines after you find the text using MoveRight and EndKey, then you can test if the selection is a table using the property Tables. Someting like

import win32com.client as com

from win32com.client import constants as wcons

app = com.Dispatch('Word.Application')

# Find the text

app.Selection.Find.Execute('Call Tree',

False, False, False, False, False,

True, wcons.wdFindContinue, False,

False,False,)

# Extend the selection to the end

app.Selection.EndKey(Unit=wcons.wdLine)

while True:

# Move the selection to the next character

app.Selection.MoveRight(Unit=wcons.wdCharacter, Count=1)

# And Select the whole line

app.Selection.EndKey(Unit=wcons.wdLine, Extend=wcons.wdExtend)

# If I hit the table...

if app.Selection.Tables.Count:

print "Table found... Stop"

# I leave the loop

break

# Otherwise delete the selection

print "Deleting ...",app.Selection.Text

app.Selection.Delete()

# And delete the return

app.Selection.TypeBackspace()

I would recommend trying to do what you want first in word using macros (Try recording the macros if you are not familiar with VBA) and then translate the code to Python.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值