#string #local #ansi #codec #charset #codepage #utf-8

local-encoding

Rust library for encoding/decoding string with local charset. It usefull for work with ANSI strings on Windows.

2 unstable releases

Uses old Rust 2015

0.2.0 Aug 9, 2016
0.1.0 Jul 12, 2016

#1550 in Text processing

Download history 383/week @ 2023-12-06 443/week @ 2023-12-13 372/week @ 2023-12-20 226/week @ 2023-12-27 359/week @ 2024-01-03 350/week @ 2024-01-10 417/week @ 2024-01-17 347/week @ 2024-01-24 329/week @ 2024-01-31 390/week @ 2024-02-07 412/week @ 2024-02-14 375/week @ 2024-02-21 385/week @ 2024-02-28 475/week @ 2024-03-06 504/week @ 2024-03-13 421/week @ 2024-03-20

1,848 downloads per month
Used in 18 crates (15 directly)

MIT license

18KB
312 lines

local-encoding

Join the chat at https://gitter.im/bozaro/local-encoding-rs Build Status Crates.io

This repository contains rust library for encoding/decoding string with local charset. It usefull for work with ANSI strings on Windows.

Unfortunately Windows widly use 8-bit character encoding instead UTF-8. This causes a lot of pain.

For example, in Russian version:

  • CP-1251 (ANSI codepage) used for 8-bit files;
  • CP-866 (OEM codepage) used for console output.

To convert between 8-bit and Unicode used Windows have function: MultiByteToWideChar and WideCharToMultiByte.

This library provide simple function to convert between 8-bit and Unicode characters on Windows.

UTF-8 used as 8-bit codepage for non-Windows system.

Rustdoc: https://bozaro.github.io/local-encoding-rs/local_encoding/

Usage

Put this in your Cargo.toml:

[dependencies]
local-encoding = "*"

For example:

extern crate local_encoding;

use local_encoding::{Encoding, Encoder};

fn main()
{
	println!("Unicode string: {}", Encoding::ANSI.to_string(b"ANSI string").unwrap());
	println!("Unicode string: {}", Encoding::OEM.to_string(b"OEM string").unwrap());
}

Dependencies

~130KB