قراءة وكتابة تنسيق ملف النص المفصول بواسطة علامة التبويب
سيناريوهات الاستخدام المحتملة
يدعم Microsoft Excel العديد من الصيغ مثل XLS، XLSX، XLSM، XLSB، CSV، المفصول بواسطة علامة التبويب، إلخ. كما تدعم Aspose.Cells العديد من هذه الصيغ. يشرح هذا المقال كيفية قراءة وكتابة ملف Excel بصيغة مفصول بواسطة علامة التبويب باستخدام Aspose.Cells.
قراءة وكتابة تنسيق ملف النص المفصول بواسطة علامة التبويب
يقوم الكود العيني التالي بتحميل ملف النص المفصول بواسطة علامة التبويب المصدر ويقرأ خليته A1، ثم ينسخ محتواه إلى خلية C4 ويحفظه كـ ملف النص المفصول بواسطة علامة التبويب الناتج.
الكود المثالي
Aspose::Cells::Startup(); | |
//For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-C | |
//Source directory path | |
U16String dirPath(u"..\\Data\\LoadingSavingAndConverting\\"); | |
//Output directory path | |
U16String outPath(u"..\\Data\\Output\\"); | |
//Path of input tab delimited file | |
U16String srcReadWriteTabDelimited = dirPath + u"srcReadWriteTabDelimited.txt"; | |
//Path of output tab delimited file | |
U16String outReadWriteTabDelimited = outPath + u"outReadWriteTabDelimited.txt"; | |
//Read source tab delimited file | |
Workbook wb(srcReadWriteTabDelimited); | |
//Access first worksheet | |
Worksheet ws = wb.GetWorksheets().Get(0); | |
//Access cell A1 | |
Cell cell = ws.GetCells().Get(u"A1"); | |
//Get the string value of cell A1 | |
U16String strVal = cell.GetStringValue(); | |
//Print the string value of cell A1 | |
U16String cellValue(u"Cell Value: "); | |
std::cout << cellValue.ToUtf8() << strVal.ToUtf8() << std::endl; | |
//Access cell C4 | |
cell = ws.GetCells().Get(u"C4"); | |
//Put the string value of cell A1 into C4 | |
U16String strValPtr(strVal); | |
cell.PutValue(strValPtr); | |
//Save the workbook in tab delimited format | |
wb.Save(outReadWriteTabDelimited, SaveFormat::TabDelimited); | |
Aspose::Cells::Cleanup(); |