IABSD.fr/ports/textproc/p5-String-ToIdentifier-EN

Branch :


Log

Author Commit Date CI Message
cfbb239b 2016-03-20 19:56:05 Remove SHARED_ONLY from all CPAN Perl ports and the cpan and perl MODULES. Add WANTLIB+=perl and PKG_ARCH=* as appropriate.
8aa371d9 2014-11-01 19:59:16 unify; ok afresh1@
7ba2750f 2014-03-16 21:57:04 Update to p5-String-ToIdentifier-EN-0.11 OK. sthen@
eae66e4a 2013-03-11 11:35:43 PERMIT_* / REGRESS->TEST sweep
6b56a669 2012-04-06 09:27:49 import p5-String-ToIdentifier-EN from Andrew Fresh, ok landry@ This module provides a utility method, "to_identifier" for converting an arbitrary string into a readable representation using the ASCII subset of "\w" for use as an identifier in a computer program. The intent is to make unique identifier names from which the content of the original string can be easily inferred by a human just by reading the identifier. If you need the full set of "\w" including Unicode, see the subclass String::ToIdentifier::EN::Unicode. Currently, this process is one way only, and will likely remain this way. The default is to create camelCase identifiers, or you may pass in a separator char of your choice such as "_". Binary char groups will be separated by "_" even in camelCase identifiers to make them easier to read, e.g.: "foo_2_0xFF_Bar".