Hi !
I'm interested in registering on CPAN, so I can upload a module I've written and want to share. My name: Johan Holmberg My email: [EMAIL PROTECTED] My homepage: --none-- My preferred use-ID: HOLMBERG The first thing I'm planning to contribute is a module tentatively called "Text::Jhpp" which expands strings with embedded "loop-constructs" (se the start of the POD-documentation below). /Johan Holmberg --------------------------------------------------------------- =head1 DESCRIPTION Text::Jhpp::expand expands strings containing <<...>>. Inside the brackets several "alternative" substrings are specified. The originalstring is then instantiated once for each of these alternatives. As a simple example, the string "A <<blue,green,red>> apple" is expanded into the following three strings: "A blue apple" "A green apple" "A red apple" There can be several <<...>> expressions in a string. "<<Hello,Goodbye>> <<Tom,Randal>>." is expanded into: "Hello Tom." "Goodbye Tom." "Hello Randal." "Goodbye Randal." [[ ... more details removed ... ]] ----------------------------------------------------------------------