Prune www/mod_log_config-st
[dports.git] / textproc / p5-String-ToIdentifier-EN / pkg-descr
1 String::ToIdentifier::EN provides a utility method, "to_identifier" for
2 converting an arbitrary string into a readable representation using the ASCII
3 subset of \w for use as an identifier in a computer program. The intent is to
4 make unique identifier names from which the content of the original string can
5 be easily inferred by a human just by reading the identifier.
6
7 If you need the full set of \w including Unicode, see the subclass
8 String::ToIdentifier::EN::Unicode.
9
10 Currently, this process is one way only, and will likely remain this way.
11
12 The default is to create camelCase identifiers, or you may pass in a separator
13 char of your choice such as _.
14
15 Binary char groups will be separated by _ even in camelCase identifiers to make
16 them easier to read, e.g.: foo_2_0xFF_Bar.
17
18 WWW: http://search.cpan.org/dist/String-ToIdentifier-EN/