使用python有条件地从Excel格式化文本字符串

我想格式化电子表格(xls或xlsx),以便通过用特定颜色填充背景来格式化包含单词或以某个字符串结尾的任何单元格.

例如,如果单元格包含单词“已删除”,请将其填充为黑色并将文本绘制为白色.
如果单元格以’.pf’结尾,则将单元格绘制为红色.

几年前我发现了类似的问题,提出以下建议:

import xlrd 
import xlutils.copy 

inBook = xlrd.open_workbook('input.xls',formatting_info=True) 
outBook = xlutils.copy.copy(inBook) 

def _getoutCell(outSheet,colIndex,rowIndex): 
    """ HACK: Extract the internal xlwt cell representation. """ 
    row = outSheet._Worksheet__rows.get(rowIndex) 
    if not row: return None 
    cell = row._Row__cells.get(colIndex) 
    return cell 

def setoutCell(outSheet,col,row,value): 
    """ Change cell value without changing formatting. """ 
    # HACK to retain cell style. 
    prevIoUsCell = _getoutCell(outSheet,row) 
    # END HACK,PART I 
    outSheet.write(row,value) 
    # HACK,PART II 

    if prevIoUsCell: 
        newCell = _getoutCell(outSheet,row) 
    if newCell:
        newCell.xf_idx = prevIoUsCell.xf_idx 
    # END HACK 


outSheet = outBook.get_sheet(0) 
setoutCell(outSheet,5,'Test') 
outBook.save('output.xls')

虽然这会将值从input.xls复制到output.xls,但这似乎不会传输格式(打开output.xls时不再格式化input.xls中的测试值,条件格式规则也不会出现在“在excel中管理规则.

“if”数字值的语句似乎有效,但同样,我正在寻找一种格式化包含某些字符串的单元格的方法.谢谢!

解决方法

打开时保留原始input.xls格式:
from xlrd import open_workbook

input_wb = open_workbook('input.xls',formatting_info=True)

基于此模板创建新工作簿:

from xlutils.copy import copy as copy_workbook

output_wb = copy_workbook(input_wb)

定义一些新的单元格样式:

from xlwt import easyxf

red_background = easyxf("pattern: pattern solid,fore_color red;")
black_with_white_font = easyxf('pattern: pattern solid,fore_color black; font: color-index white,bold on;")

评估和修改您的单元格:

input_ws = input_wb.sheet_by_name('StackOverflow')
output_ws = output_wb.get_sheet(0)

for rindex in range(0,input_ws.nrows):
   for cindex in range(0,input_ws.ncols):
       input_cell = input_ws.cell(rindex,cindex)
       if input_cell.value[ input_cell.value.rfind('.'): ] == 'pf':
           output_ws.write(rindex,cindex,input_cell.value,red_background)
       elif input_cell.value.find('deleted') >= 0:
           output_ws.write(rindex,black_with_white_font)
       else:
           pass  # we don't need to modify it

保存新工作簿

output_wb.save('output.xls')

使用上面的示例,未修改的单元格应保持原始格式不变.

如果您需要更改单元格内容并希望保留原始格式(即不使用您的自定义easyxf实例),您可以使用以下代码段:

def changeCell(worksheet,text):
    """ Changes a worksheet cell text while preserving formatting """
    # Adapted from https://stackoverflow.com/a/7686555/1545769
    prevIoUsCell = worksheet._Worksheet__rows.get(row)._Row__cells.get(col)
    worksheet.write(row,text)
    newCell = worksheet._Worksheet__rows.get(row)._Row__cells.get(col)
    newCell.xf_idx = prevIoUsCell.xf_idx

# ...

changeCell(worksheet_instance,155,2,"New Value")

对于比较,您可以使用字符串方法find和rfind(从右侧搜索).它们返回字符串中子字符串位置的索引.如果未找到子字符串,则返回-1.你会看到上面的input_cell.value.find(‘deleted’)> = 0来评估子字符串’deleted’是否存在.对于.pf比较,我使用了rfind以及Python中的一些名为slicing的东西.

相关文章

我最近重新拾起了计算机视觉,借助Python的opencv还有face_r...
说到Pooling,相信学习过CNN的朋友们都不会感到陌生。Poolin...
记得大一学Python的时候,有一个题目是判断一个数是否是复数...
文章目录 3 直方图Histogramplot1. 基本直方图的绘制 Basic ...
文章目录 5 小提琴图Violinplot1. 基础小提琴图绘制 Basic v...
文章目录 4 核密度图Densityplot1. 基础核密度图绘制 Basic ...