stringex 0.0.2
Port of Ruby stringex gem to D.
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
stringex-d
Partial port of Ruby's stringex into D. Right now it only includes unicode characters replacement via maps provided in YAML files.
Note that using it will create a directory unidecode-yaml
in your project's root, where all YAML files will be put (if you know any other way to do it better, please let me know).
Usage
The simplest way to use it is to simply call a unidecode
function on a string:
import std.stdio;
import stringex.unidecode;
void main()
{
writeln("ŻÓŁW".unidecode());
}
The result will be ZOLW
.
However, note that using it that way will create a UniDecoder
class every time you call it and, as a result, loading YAML files on every use. The sane way to use it is to manually instantiate a decoder and reuse it, thus limiting filesystem operations (once loaded, map will be kept in memory):
auto decoder = new UniDecoder();
auto decoded = decoder.decode("żółw"); // => "zolw"
decoded = decoder.decode("影响"); // => "Ying Xiang"
What for?
This would probably be mostly useful for web apps and creating URLs for resources with unicode names. Another example is saving files with sane names.
License
Released under MIT license.
- 0.0.2 released 9 years ago
- katafrakt/stringex-d
- MIT
- Copyright © 2015, Paweł Świątkowski
- Authors:
- Dependencies:
- dyaml
- Versions:
-
0.2.1 2019-Nov-06 0.2.0 2019-Aug-26 0.1.1 2019-Jul-23 0.1.0 2017-Jul-24 0.0.3 2016-Nov-29 - Download Stats:
-
-
1 downloads today
-
50 downloads this week
-
325 downloads this month
-
9959 downloads total
-
- Score:
- 3.1
- Short URL:
- stringex.dub.pm