将文本数值数据转换为数字

Aspose.Cells 提供了Cells.ConvertStringToNumericValue()可用于将所有字符串或文本数字数据转换为数字的方法。

以下屏幕截图显示了单元格中的字符串编号A1:A17.字符串编号左对齐。

输入文件:作为文本字符串输入的数字
待办事项:图片_替代_文本

这些字符串数字已使用以下方法转换为数字Cells.ConvertStringToNumericValue()在下面的截图中。如您所见,它们现在是右对齐的。

输出文件:字符串已转换为数字
待办事项:图片_替代_文本

C# 将字符串数字数据转换为实际数字的代码

以下示例代码说明了如何将所有字符串数字数据转换为所有工作表中的实际数字。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Instantiate workbook object with an Excel file
Workbook workbook = new Workbook(dataDir + "SampleBook.xlsx");
for (int i = 0; i < workbook.Worksheets.Count; i++)
{
workbook.Worksheets[i].Cells.ConvertStringToNumericValue();
}
workbook.Save(dataDir + "output_out.xlsx");