ドキュメントを Excel に変換する

ドキュメントをある形式から別の形式に変換することは、Aspose.Words の主力機能です。利用可能な ロードフォーマット のドキュメントを XLSX 形式に変換することもできます。

ドキュメントをXLSXに変換する

ドキュメントを XLSX に変換するプロセスはかなり複雑です。 Aspose.Words を使用してドキュメントを XLSX 形式で保存するには、XlsxSaveOptions クラスと SaveFormat 列挙の新しい Xlsx 要素を使用します。前述したように、Aspose.Words でサポートされている任意のロード形式でドキュメントを XLSX に保存できます。

次のコード例は、PDF を XLSX に保存する方法を示しています。

Document doc = new Document(MyDir + "Pdf Document.pdf");
doc.Save(ArtifactsDir + "BaseConversions.PdfToXlsx.xlsx")

XLSX に保存する際の検索と置換

また、Aspose.Words を使用すると、ドキュメント内で特定の文字列または正規表現を検索し、必要な一致する文字列または正規表現に置き換えることができます。その後、結果を XLSX 形式で保存することもできます。

次のコード例は、検索と置換操作を実行し、結果を XLSX に保存する方法を示しています。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Writeln("Ruby bought a ruby necklace.");

// We can use a "FindReplaceOptions" object to modify the find-and-replace process.
FindReplaceOptions options = new FindReplaceOptions();
// Set the "MatchCase" flag to "true" to apply case sensitivity while finding strings to replace.
// Set the "MatchCase" flag to "false" to ignore character case while searching for text to replace.
options.MatchCase = true;

doc.Range.Replace("Ruby", "Jade", options);
doc.Save(ArtifactsDir + "BaseConversions.FindReplaceXlsx.xlsx");

XLSX に保存する際の圧縮レベルの指定

CompressionLevel プロパティを使用して保存時に圧縮レベルを指定することもできます。

次のコード例は、XLSX 形式で保存するときに圧縮レベルを指定する方法を示しています。

Document doc = new Document(MyDir + "Document.docx");

XlsxSaveOptions saveOptions = new XlsxSaveOptions();
saveOptions.CompressionLevel = CompressionLevel.Maximum;

doc.Save(ArtifactsDir + "BaseConversions.CompressXlsx.xlsx", saveOptions);

関連項目