您的位置:首页 > 财经 > 金融 > python XML2SRS

python XML2SRS

2025/1/16 20:55:48 来源:https://blog.csdn.net/link200809/article/details/17524045  浏览:    关键词:python XML2SRS

step 1:练习XPATH 选取text-property标签具有name='text' 属性值的标签的值

//text-property[@name='text']

import os
import lxml.etree as etree
dir = "E:\\"
for file in os.listdir(dir):if file.endswith('.rptdesign'):with open(dir+file,'r',encoding='utf-8') as f:first_line = f.readline()xml_content = f.read()selector = etree.HTML(xml_content)str = selector.xpath('//text-property[@name="text"]/text()')print(str)

获取Tile,Description,Columns 

step2 使用AI 在word 方面的自动转化功能

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com