string-transform-ad ~master

Library to perform basic string transforms (camelCase, snake_case and plurals)


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:

String Transforms D

Basic inflection and pluralization libarary for D

Currently includes only English for pluralization but is enough of a framework to add other languages easily enough.

Case Example

import transforms.camel;
import transforms.snake;

auto camel = "get_http_response_code".camelCase;
assert (camel == "getHttpResponseCode");

auto snake = camel.snakeCase;
assert (snake == "get_http_response_code");

Pluralization Example

import inflections.en;

assert("apple".pluralize == "apples");
assert("apples".singularize == "apple");

Authors:
  • David Monagle
Dependencies:
none
Versions:
~master 2020-Sep-09
Show all 1 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 0 downloads total

Score:
0.0
Short URL:
string-transform-ad.dub.pm