在java regex方面我需要一些帮助。下面有一些字符串,需要从中提取信息
“some information text followed by some price detail like below
Amount: $45.75
Tax: $3.25
Discount: -$5.00
Total : *$49.00*
followed by some other information text”
我需要regex提取所有的价格(键,值)对,如(Amount,$45.75),(Tax,$3.25)
或者用regex来提取提供的密钥的价格。也就是说,String amountregex
我在做python软件包。对于我的代码,我需要提取显示文件中的所有图像。有人能帮我渡过难关吗?
提前谢谢你的帮助。
我的代码如下所示:
import pptx
prs = pptx.Presentation(filename)
for slide in prs.slides:
for shape in slide.shapes:
print(shape.shape_type)
在使用shape_type时,它正在显示ppt中显示的图片(13)。但是我想要在有代码的文件夹中提取图片。