How to Convert WordStar Files to Plain Text (ASCII) and Microsoft Word

You have a bunch of old WordStar files from the 1980s. When you open one of these files in NotePad or Microsoft Word or some other modern word processing program, you see lot of gibberish:

  ma i rubbe hosin dow hi a 1 noon 
  shor broo
i th othe hand.

Typical Gibberish-Greek Contained in 1980s-era WordStar Files


Skip the Story and Go to the Instructions

You search the web for a simple and free solution to your problem of converting WordStar files to plain text files. You read the Wikipedia article on WordStar. You try the conversion program recommended by the UCLA Knowledge Base. You try add-ons converters to Microsoft Word. But nothing works.

Finally, you come across this WordStar discussion page on archiveteam.org:

Adobe Acrobat Writer 50 < Complete ◎ >

To help find the right PDF solution for your current needs, please let me know:

The Legacy and Evolution of Adobe Acrobat Writer 5.0 During this era of computing, the creation component of the software suite was frequently referred to by professionals as "Adobe Acrobat Writer," a term stemming from the legacy "PDFWriter" printer driver used in older versions to generate PDF files. Version 5.0 ultimately retired the basic PDFWriter driver in favor of the more powerful AdobePS (PostScript) printer driver and Acrobat Distiller engine. This structural evolution laid the groundwork for modern document workflows. 1. Context: The State of PDFs in 2001

Recognizing that more people were reading documents on monitors rather than printing them out, Adobe introduced CoolType technology. This text-rendering innovation improved font legibility on LCD screens, reducing eye strain for corporate users. Early Digital Signatures and Security

This tool converted PostScript files generated by desktop publishing software into compact, high-quality PDFs.

In the history of digital document management, few software releases have been as influential as Adobe Acrobat 5.0. Released in April 2001, this version transformed the Portable Document Format (PDF) from a digital paper clone into an interactive, secure, and collaborative business standard. adobe acrobat writer 50

In the early generations of Adobe Acrobat, the software suite was divided into distinct components based on the user's tasks:

: Users looking for these capabilities today typically use Adobe Acrobat Pro , which now includes AI-powered features for summarizing and searching documents.

While "Adobe Acrobat Writer 5.0" is a legacy version of the software now known as , modern versions provide comprehensive tools for creating and managing professional documents like informative papers. Current standards involve using Adobe Acrobat Standard or Pro to convert, edit, and secure PDF files. Essential Tools for Informative Papers

"Adobe Acrobat Writer 50"—Adobe Acrobat 5.0 and its PDFWriter component—was more than just software; it was a milestone. It transformed messy digital document exchange into a reliable, universal standard that continues to define modern workflows. While the original 2001 software is now a museum piece, its legacy is alive in the many efficient, privacy-focused, and cost-effective tools available in 2026. Whether you choose UPDF for offline safety, PDFelement for AI features, or Sumatra PDF for pure speed, the core principle remains the same: creating a perfect, shareable PDF should be as simple as printing a page. To help find the right PDF solution for

and pick your desired "paper" shade (e.g., a slight off-white or cream for a professional look). Adjust the to 100% to ensure it remains solid. 2. Matching Physical Paper Sizes

Alternatively, the term "Writer" could be mixing up with Adobe InDesign, which is a page layout software that also creates PDFs. But the main product for PDF is Acrobat.

While everyday users utilized the free Acrobat Reader to view files, businesses and creators relied on the full Acrobat 5.0 suite to generate content. The suite was built around two primary engines:

Acrobat 5.0 was a major milestone, but the platform has evolved significantly over the last two decades. Adobe eventually shifted from standalone software versions to a subscription-based ecosystem. Early Digital Signatures and Security This tool converted

The most likely product you are referring to is (released in 2001) or the specific component within it called “Acrobat Distiller” and “Acrobat Writer” (a driver that allowed you to "print" PDFs from any application).

| Tool | Best for | Cost | |------|----------|------| | | Full compatibility & advanced editing | Subscription | | PDFCreator (open source) | Virtual PDF printer (very “Writer-like”) | Free | | Microsoft Print to PDF | Basic creation, built into Windows 10/11 | Free | | LibreOffice | Export any doc as PDF | Free |

Strictly speaking, "Adobe Acrobat Writer 5.0" didn't exist as a standalone product. However, the term was commonly used in two contexts:

For the first time, users could easily extract data from a locked PDF file. The addition of structural XML tagging allowed users to seamlessly export PDF content into , extract vector assets into clean raster images, and scale layouts to fit early handheld devices. Enterprise-Grade Security

[Optional geek explanation: WordStar encodes the last character of each word by setting the high-order bit of the binary character representation. The program simply resets the high-order bit of all characters in the file, changing the goofy characters into normal ones.]

You install Perl on your computer and you try out the script. It works! The program reads the WordStar file named in.ws, converts the Greek-like characters to ordinary text, and writes out a new file, out.txt in ordinary plain text format, which you can read into NotePad, Microsoft Word, or practically any modern program.

But you have to modify the file names inside the script (in.ws and out.txt) for each file conversion. You want to automate the process of converting lots of WordStar files. But you don't know anything about Perl programming. You ask your office co-worker who knows Perl to modify the script to make it do what you want. Here's what you get:

opendir my $dir, "." or die "Cannot open directory: $!";
my @files = readdir $dir;
closedir $dir;

foreach $file (@files) {
    unless (($file =~ /^[A-Za-z0-9_\s\-]*$/) && (-f $file)) {
        print "  Skipped $file\n";
        next;
    }
    open OUTFILE, ">$file.txt";
    open INFILE, "<$file";
    while (<INFILE>)
    {
        tr [\200-\377] [\000-\177];
        print OUTFILE $_;
    }
    close INFILE;
    close OUTFILE;
    print "  Read $file, wrote $file.txt ...\n";
}
sleep (5);


The program looks at all the files in the same directory where the program resides. If a file name consists of only letters, numerals, underscores, hyphens, and space characters, it assumes that it's a WordStar file; it converts the file to plain text and writes it out as a new file with ".txt" appended to the file name. It leaves the original WordStar file unchanged.

The program ignores any file whose name contains any other characters, such as the period character in an extension like .doc or .jpg. If you have a WordStar file named with an extension such as MYPAPER.783, you'll first need to rename it (or copy it to a new file) and use a new name such as MYPAPER783 or MYPAPER 783 (with a space replacing the dot). 



Instructions for Converting WordStar Files to Text

First of all, you need to have the Perl computer language installed on your computer. If you're working on a Mac or Unix/Linux system, you're in luck because Perl comes pre-installed. (If you're using Linux, see Note 4 below.)

If you're working on Windows, you can download and install Perl for free from perl.org:

Perl - Download website: https://www.perl.org/get.html      (Not necessary for Mac or Unix/Linux)

Scroll down to find your computer operating system. For Windows, you're offered different versions of Perl. I used the first one, ActiveState Perl. Click the download button and follow the instructions to download and install Perl.

After Perl is installed, you need to put a small program called convert.pl in the directory containing your old WordStar file. You can either download the from this website or you can create the file yourself (open a text editor such as Notepad, copy the text below, paste it into your text editor, and save the file under the name convert.pl). 

To download from this website:

1. Click the following download link: convert.txt
2. Save the file
3. Rename the file to "convert.pl" (change the "txt" to "pl" in the file name)
4. Copy the file to each directory containing WordStar files

OR use a text editor to create a text file named convert.pl containing the following text:

opendir my $dir, "." or die "Cannot open directory: $!";
my @files = readdir $dir;
closedir $dir;

foreach $file (@files) {
    unless (($file =~ /^[A-Za-z0-9_\s\-]*$/) && (-f $file)) {
        print "  Skipped $file\n";
        next;
    }
    open OUTFILE, ">$file.txt";
    open INFILE, "<$file";
    while (<INFILE>)
    {
        tr [\200-\377] [\000-\177];
        print OUTFILE $_;
    }
    close INFILE;
    close OUTFILE;
    print "  Read $file, wrote $file.txt ...\n";
}
sleep (5);


In a file browser, go to the WordStar directory and run the convert.pl program (in Windows, double-click the icon in the folder). Voila! The program converts your WordStar files to plain text and writes them out as new files in the same directory, with ".txt" appended to the file name. You can open these files in Microsoft Word and most other programs.

This is what you can expect to see when you run the convert.pl program:

WordStar to Text Conversion Directory   WordStar to Text Conversion Report

Important Notes

Note 1: The program only converts files whose names contain only letters, numbers, underscores, hyphens, and space characters. If you have a WordStar file named with an extension such as MYPAPER.783, you'll first need to rename it or copy it to a new file and choose a new name without using the dot character, for example, MYPAPER783 or MYPAPER 783 (with a space replacing the dot).

Note 2: The convert.pl program leaves your original WordStar files unchanged. However, when it writes out the filename.txt file, it doesn't check to see if there's an existing file of the same name. It simply overwrites the existing file. Before you run the convert.pl program, make sure you don't have any existing .txt files that you would mind losing.

Note 3: On my Windows 10 PC, the first time I double-clicked the convert.pl icon, Windows asked me which program I wanted to use to open the file, and offered several choices. I clicked on "Perl Command Line Interpreter", and then the program ran in the wrong directory (the Perl installation directory). This had no effect, because it simply skipped all the files (they all had file name extensions). After that, double-clicking the icon always worked on the local directory, as it should.

Note 4: For Linux (operating system) users, I got the following note from a reader.

The Perl script doesn't run as-is on Unix-like systems when one double-clicks on the icon.  It's an easy fix, though. Add this line to the top of the file:

#!/usr/bin/perl

Perl treats it as a comment and ignores it, but the Bash shell in Linux sees the #! in the first two bytes and then knows that the path to the program that will run the executable script follows on the same line.  Microsoft Windows does it by filename extension, but Unix/Linux doesn't give a whit about filename extensions when it comes to deciding what interpreter to use: It's all in the text that follows the "hash-bang" (#!).

If the user knows that their Perl interpreter is located elsewhere, in a non-standard location or with a different name, they're probably savvy enough to modify the path in the Perl script as needed.  The code will still run fine on Windows systems with the modification.


2016 Gray Chang
Thanks to Dan White (no relation to Moscone/Milk figure) for Perl programming assistance
Thanks to Andrew Poth for Note 4 about Linux