Metni Sütunlara Dönüştür
Contents
[
Hide
]
Metni Sütunlara Dönüştür
Microsoft Excel kullanarak Metninizi Sütunlara dönüştürebilirsiniz. Bu özellik şu adresten edinilebilir:Veri AraçlarıaltındaVerisekme. Bir sütunun içeriğini birden çok sütuna bölmek için veriler, Microsoft Excel’in bir hücrenin içeriğini birden çok hücreye böldüğü virgül (veya başka herhangi bir karakter) gibi belirli bir sınırlayıcı içermelidir. Aspose.Cells ayrıca bu özelliği üzerinden sağlar.Metinden Sütunlara yöntem. Aşağıdaki kod parçacığı,Metinden Sütunlara yöntemi, metni sınırlayıcı olarak boşluk içeren sütunlara dönüştürür.
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
output_directory = "Examples/SampleFiles/OutputDirectory/" | |
# Create Workbook | |
workbook = Workbook() | |
# Access the first worksheet | |
worksheet = workbook.getWorksheets().get(0) | |
# Add people name in column A. Fast name and Last name are separated by space. | |
worksheet.getCells().get("A1").putValue("John Teal") | |
worksheet.getCells().get("A2").putValue("Peter Graham") | |
worksheet.getCells().get("A3").putValue("Brady Cortez") | |
worksheet.getCells().get("A4").putValue("Mack Nick") | |
worksheet.getCells().get("A5").putValue("Hsu Lee") | |
# Create text load options with space as separator. | |
txtLoadOptions = TxtLoadOptions() | |
txtLoadOptions.setSeparator(' ') | |
# Split the column A into two columns using TextToColumns() method. | |
# Now column A will have first name and column B will have second name. | |
worksheet.getCells().textToColumns(0, 0, 5, txtLoadOptions) | |
# Save the excel file. | |
workbook.save(output_directory + "outputTextToColumns.xlsx") |