在单元格中添加空间
本文关键字:空间 添加 单元格 | 更新日期: 2023-09-27 18:12:30
我有一个excel的2列(整个col H和I),其中包含开始时间和结束时间
STARTTIME ENDTIME
2pm 4pm
12pm 3am
我想在时间和pm/am之间添加一个空格(即:,下午2时改为下午2时)我使用Microsoft.Office.interop.Excel
并指定了范围。现在,我如何添加一个空格?
string cellValue = "12pm";
cellValue = cellValue.Replace("pm"," pm");
cellValue = cellValue.Replace("am"," am");
您可以通过定位'pm'或'am'并在其前面插入空格字符来更改每个单元格的值。例子:
string cellValue = "12pm";
int index = cellValue.Pos("pm");
cellValue = cellValue.SubString(0, index) + " " + cellValue.SubString(index);