A tiny package that removes common unicode confusables/homoglyphs from strings.
Rust
In your Cargo.toml
:
toml
decancer = "1.5.5"
JavaScript (Node.js)
In your shell:
console
$ npm install decancer
In your code:
js
const decancer = require('decancer')
JavaScript (Deno)
In your code:
ts
import decancer from 'npm:decancer'
JavaScript (Bun)
In your shell:
console
$ bun install decancer
In your code:
js
const decancer = require('decancer')
JavaScript (Browser)
In your code:
```html
```
C/C++
Prerequisites:
console
$ git clone https://github.com/null8626/decancer.git --depth 1
$ cd decancer/bindings/native
$ cargo build --release
And the binary files should be generated in the target/release
directory.
Rust
```rust fn main() { let curede = decancer::curechar('οΌ₯');
match curede { decancer::Translation::Character(e) => asserteq!(e, 'e'), _ => unreachable!(), }
let curedae = decancer::curechar('Σ');
match curedae { decancer::Translation::String(ae) => asserteq!(ae, "ae"), _ => unreachable!(), }
// control characters, surrogates, combining characters, private use characters, byte order marks, etc. let curedsurrogate = decancer::curechar(0xD800u32);
assert!(matches!(cured_surrogate, decancer::Translation::None));
let cured = decancer::cure("vοΌ₯β‘π π½πΕβο½ Ε£δΉππ£");
// cured here is a decancer::CuredString struct wrapping over the cured string // for comparison purposes, it's more recommended to use the methods provided by the decancer::CuredString struct.
asserteq!(cured, "very funny text"); assert!(cured.startswith("very")); assert!(cured.contains("funny")); assert!(cured.ends_with("text"));
let outputstr = cured.into_str(); // retrieve the String inside and consume the struct. } ```
JavaScript (Node.js/Deno/Bun)
```js const cured = decancer('vοΌ₯β‘π π½πΕβο½ Ε£δΉππ£')
// cured here is a CuredString object wrapping over the cured string // for comparison purposes, it's more recommended to use the methods provided by the CuredString class.
if (cured.contains('funny')) { console.log('found the funny') }
if ( cured.equals('very funny text') && cured.startsWith('very') && cured.endsWith('text') ) { console.log('it works!') }
console.log(cured.toString()) // 'very funny text' ```
JavaScript (Browser)
```html