A tiny package that removes common confusables from strings.
Pros:
Con:
This library is available in the following languages:
In your Cargo.toml
:
toml
decancer = "1.5.2"
In your shell:
console
$ npm install decancer
In your code:
js
const decancer = require('decancer')
In your code:
```ts import init from "https://deno.land/x/decancer@v1.5.2/mod.ts"
const decancer = await init() ```
In your code:
```html
```
NOTE: cured output will ALWAYS be in lowercase.
```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' ```
```rust extern crate decancer;
fn main() { 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!(output, "very funny text"); assert!(output.startswith("very")); assert!(output.contains("funny")); assert!(output.ends_with("text"));
let outputstr = output.into_str(); // retrieve the String inside and consume the struct. } ```
```html