stringex 0.1.1
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.
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()); // => "ZOLW"
writeln("影响".unidecode()); // => "Ying Xiang"
}
In the past there was a UniDecoder
class used to cache YAML files used for decoding. However since version 0.1 it's no longer needed and it's left only for backwards compatibility, aliasing unidecode()
.
auto decoder = new UniDecoder();
auto decoded = decoder.decode("żółć"); // => "zolc"
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.1.1 released 6 years ago
- katafrakt/stringex-d
- MIT
- Copyright © 2015, Paweł Świątkowski
- Authors:
- Dependencies:
- none
- 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:
-
-
25 downloads today
-
203 downloads this week
-
482 downloads this month
-
11342 downloads total
-
- Score:
- 3.2
- Short URL:
- stringex.dub.pm