Konvertieren Sie TXT in SXC

Perl Bibliothek zum Konvertieren von TXT in SXC

Verwenden Sie die Konvertierung API von Cells Cloud, um benutzerdefinierte Tabellenkalkulations-Workflows in Perl-Projekten zu erstellen. Dies ist eine professionelle Lösung zum Online-Konvertieren von TXT in SXC und andere Dokumentformate mit Perl.

Konvertieren Sie TXT in SXC mit dem Cloud SDK Cells für Perl

API
PUT
https://api.aspose.cloud/v3.0/cells/convert

Das Konvertieren von Dateiformaten von TXT in SXC kann eine komplexe Aufgabe sein. Unser SDK Perl bewältigt alle Konvertierungen vom TXT- ins SXC-Format und bewahrt dabei den strukturellen und logischen Hauptinhalt der TXT-Quelltabelle. Unsere Bibliothek Perl bietet eine professionelle Lösung für die Online-Konvertierung von TXT- in SXC-Dateien. Dieses Cloud-SDK bietet Perl-Entwicklern leistungsstarke Funktionen und gewährleistet eine hochwertige SXC-Ausgabe.

Perl Codebeispiel zur Konvertierung von TXT in SXC mit Cells Cloud SDK

# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl/
    use strict;
    use warnings;
    use utf8; 
    use File::Slurp;
    use AsposeCellsCloud::CellsApi;
    my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'ProductClientId'}, client_secret => $ENV{'ProductClientSecret'});
    my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config));
    my $format = "sxc";
    my $Book1Data = undef;
    my $result =undef;
    my @fileinfos = stat("Book1.txt");
    my $filelength = $fileinfos[7];
    open(DATA, '<', "Book1.txt") or die "file can not open, $!";
    binmode(DATA);
    read (DATA, $Book1Data, $filelength);
    close (DATA); 
    $result = $instance->cells_workbook_put_convert_workbook(workbook => $Book1Data, format => $format);
    open(my $fh, '>', "Dest.sxc") or die "Could not open file!";
    binmode $fh;
    print $fh $result;
    close $fh;

So konvertieren Sie TXT in SXC mithilfe der Cells Cloud Perl-Bibliothek.

  1. Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
  2. Installieren Sie das Paket Perl und fügen Sie Ihrem Projekt die Referenz hinzu (importieren Sie die Bibliothek).
  3. Öffnen Sie die Quelldatei in Perl.
  4. Verwenden Sie die Methode `put_convert_workbook`, um den resultierenden Stream abzurufen.

System Anforderungen

  1. Perl 5