Python读写Excel文件和正则表达式

Posted lurenjiashuo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python读写Excel文件和正则表达式相关的知识,希望对你有一定的参考价值。

Python 读写Excel文件

这里使用的是 xlwtxlrd 这两个excel读写库。

#_*_ coding:utf-8 _*_
#__author__='观海云不远'
#__date__ = '2019-07-11'
#读写excel

import xlwt
import xlrd
import re

workbook = xlrd.open_workbook('data.xlsx')
sheet = workbook.sheet_by_index(0)

data = []

for rx in range(0, sheet.nrows):
    row = sheet.row(rx)
    item = []
    for cx in row:
        item.append(cx)
    data.append(item)

workbook = xlwt.Workbook()
sheet = workbook.add_sheet('output')

rIndex = 0
for row in iter(data):
    cIndex = 0
    for cel in row:
        sheet.write(rIndex, cIndex, cel.value + " changed")
        cIndex += 1
    rIndex += 1

workbook.save('data_output_1.xls')

Python 正则表达式

查找val中是否存在xxx

import re
ret = bool(re.search(r'xxx', val))

以上是关于Python读写Excel文件和正则表达式的主要内容,如果未能解决你的问题,请参考以下文章

正则表达式如何匹配excel文件

Scala的文件读写操作与正则表达式

19 Python 正则模块和正则表达式

excel VBA匹配,这是我写的正则表达式:

delphi 简单正则替换 问题

Excel-VBA正则表达式提取文本案例