将文本数值数据转换为数字
Contents
[
Hide
]
有时,您希望将作为文本输入的数字数据转换为数字。您可以在 Microsoft Excel 中将数字作为文本输入,方法是在数字前放置一个撇号,例如**‘12345**.然后 Excel 将该数字视为字符串。 Aspose.Cells 允许您将字符串转换为数字。
Aspose.Cells 提供了Cells.ConvertStringToNumericValue()可用于将所有字符串或文本数字数据转换为数字的方法。
以下屏幕截图显示了单元格中的字符串编号A1:A17.字符串编号左对齐。
输入文件:作为文本字符串输入的数字 |
---|
![]() |
这些字符串数字已使用以下方法转换为数字Cells.ConvertStringToNumericValue()在下面的截图中。如您所见,它们现在是右对齐的。
输出文件:字符串已转换为数字 |
---|
![]() |
C# 将字符串数字数据转换为实际数字的代码
以下示例代码说明了如何将所有字符串数字数据转换为所有工作表中的实际数字。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"); |