Converti dati numerici di testo in numeri
Contents
[
Hide
]
A volte, vuoi convertire i dati numerici inseriti come testo in numeri. È possibile inserire numeri come testo in Microsoft Excel inserendo un apostrofo prima di un numero, ad esempio**‘12345**. Excel quindi tratta il numero come una stringa. Aspose.Cells consente di convertire le stringhe in numeri.
Aspose.Cells fornisce ilCells.ConvertStringToNumericValue()metodo che può essere utilizzato per convertire tutti i dati numerici stringa o testo in numeri.
Lo screenshot seguente mostra i numeri di stringa nelle celleA1:A17. I numeri delle stringhe sono allineati a sinistra.
File di input: numeri inseriti come stringhe di testo |
---|
![]() |
Questi numeri di stringa sono stati convertiti in numeri utilizzandoCells.ConvertStringToNumericValue()nello screenshot seguente. Come puoi vedere, ora sono allineati a destra.
File di output: le stringhe sono state convertite in numeri |
---|
![]() |
C# codice per convertire i dati numerici stringa in numeri effettivi
Il seguente codice di esempio illustra come convertire tutti i dati numerici stringa in numeri effettivi in tutti i fogli di lavoro.
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"); |