.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .if !\nF .nr F 0 .if \nF>0 \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} .\} .\" ======================================================================== .\" .IX Title "String::RewritePrefix 3pm" .TH String::RewritePrefix 3pm "2018-01-27" "perl v5.26.1" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" String::RewritePrefix \- rewrite strings based on a set of known prefixes .SH "VERSION" .IX Header "VERSION" version 0.007 .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 5 \& use String::RewritePrefix; \& my @to_load = String::RewritePrefix\->rewrite( \& { \*(Aq\*(Aq => \*(AqMyApp::\*(Aq, \*(Aq+\*(Aq => \*(Aq\*(Aq }, \& qw(Plugin Mixin Addon +Corporate::Thinger), \& ); \& \& # now you have: \& qw(MyApp::Plugin MyApp::Mixin MyApp::Addon Corporate::Thinger) .Ve .PP You can also import a rewrite routine: .PP .Vb 4 \& use String::RewritePrefix rewrite => { \& \-as => \*(Aqrewrite_dt_prefix\*(Aq, \& prefixes => { \*(Aq\*(Aq => \*(AqMyApp::\*(Aq, \*(Aq+\*(Aq => \*(Aq\*(Aq }, \& }; \& \& my @to_load = rewrite_dt_prefix( qw(Plugin Mixin Addon +Corporate::Thinger)); \& \& # now you have: \& qw(MyApp::Plugin MyApp::Mixin MyApp::Addon Corporate::Thinger) .Ve .SH "METHODS" .IX Header "METHODS" .SS "rewrite" .IX Subsection "rewrite" .Vb 1 \& String::RewritePrefix\->rewrite(\e%prefix, @strings); .Ve .PP This rewrites all the given strings using the rules in \f(CW%prefix\fR. Its keys are known prefixes for which its values will be substituted. This is performed in longest-first order, and only one prefix will be rewritten. .PP If the prefix value is a coderef, it will be executed with the remaining string as its only argument. The return value will be used as the prefix. .SH "AUTHOR" .IX Header "AUTHOR" Ricardo Signes .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" This software is copyright (c) 2013 by Ricardo Signes. .PP This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.