Batch change encoding ascii files from utf-8 to iso-8859-1

70,498

Solution 1

You can use iconv from GNUWin32, it works the same as the GNU/Linux counterpart:

iconv -f UTF-8 -t ISO-8859-1 filename.txt

you can then use it with batch, provided you've added it to your %PATH%:

for /f %x in ('dir /b *.txt') do iconv -f UTF-8 -t ISO-8859-1 %x

Solution 2

I wrote a DOS/Windows shell utility to do this. The source code is open source C++, so it can be ported to other systems.

Look for crlf.cppat david.tribble.com/src/src.html
The executable is at david.tribble.com/programs.html

Share:
70,498

Related videos on Youtube

admob actionscript iphone
Author by

admob actionscript iphone

Updated on September 17, 2022

Comments

  • admob actionscript iphone
    admob actionscript iphone almost 2 years

    Possible Duplicate:
    Batch-convert files for encoding or line ending under Windows

    I need a tool like this
    http://www.rotatingscrew.com/utfcast.aspx

    But the tool should do the opposite, convert multiple files from utf-8 to iso-8859-1

    Is there any tool (php script, batch file, etc.) for Windows that can do this? Thanks

    • Admin
      Admin over 14 years
      most of those questions are about converting TO utf-8, but any of those batch tools should be able to convert in either direction.
  • Joey
    Joey over 14 years
    Iff the Windows port is at least half-way sane (I know, many of them aren't and GNUWin32 was a long-time offender in that area) you could simply pass *.txt to iconv. I never really expect it from ported applications but sometimes there are people with an eye for details working on them and then such things are fixed and globbing is done within the application. Might be the case here.
  • admob actionscript iphone
    admob actionscript iphone over 14 years
    Great! I'll try it. I wish I could select multiple answers. Thanks!!
  • admob actionscript iphone
    admob actionscript iphone over 14 years
    Great! worked great!!
  • admob actionscript iphone
    admob actionscript iphone over 14 years
    Great! I'll try it. I wish I could select multiple answers. Thanks!!
  • David R Tribble
    David R Tribble over 14 years
    Well, you can upvote as many good answers as you want.
  • Cory Bolles
    Cory Bolles over 12 years
    The link to ConvertEncoding is dead.
  • darksoulsong
    darksoulsong almost 11 years
    I installed this, but the command gives me a "file not found" message but the file is there. I'm supposed to run this on windows console, right?
  • OverTheRainbow
    OverTheRainbow almost 6 years
    "iconv.exe -c -f UTF-8 -t ISO-8859-1//TRANSLIT input.gpx > output.gpx" didn't work for me at all: postimg.cc/image/nzet60ze5
  • Bizhan
    Bizhan about 5 years
    link dead? or is it just that my IP is blocked? The requested URL was rejected. If you think this is an error, please contact the webmaster.