I have an idea to write script that produces html-forms dynamically. It's primarily used for simple blogging (web blog) system for users from whom i cannot require too much knowledge about that sort of things, they just want to get it done. Hopefully quick too.

Getting few regular expressions right has been difficult. Element can have definition and alternative definition, both are been shown on the script produced form. Here's how i define the form elements inside the script:

# three text inputs, each with a size 30 tag form('input', 'text', 'user_name:Name', '30', 'user_email:Email|format + user@domain.com', '30', 'user_title:Topic', '30'); # textarea element, size 30 cols x 10 rows form('textarea', 'user_message:Feedback', '30x10'); # select element, name 'city', four options form('select:sort', 'city:City', 'Tampere', 'Helsinki', 'Espoo', 'Turk +u'); # input checkbox form('input', 'checkbox', 'reply|waiting for answer?'); # input submit form('input', 'submit', 'send');
So bits and pieces like this:

formElement:definition|Alternative definition

I cannot seem to get regular expressions done that could separete this kind of strings. The first one always returns true? I've tried this way:

sub split { my %key; if ($_[0] =~ /^(.+?):(.+?)$/) { $key{'name'} = $1; $key{'definition'} = $2; $key{'altdefinition'} = ''; } elsif ($_[0] =~ /^(.+?)\|(.+?)$/) { $key{'name'} = $1; $key{'altdefinition'} = $2; $key{'definition'} = ''; } elsif ($_[0] =~ /^(.+?):(.+?)\|(.+?)$/) { $key{'name'} = $1; $key{'definition'} = $2; $key{'altdefinition'} = $3; } return %key; }
What characters should i choose to be delimeters, and how could this be made "foolproof"?

In reply to Getting regular expression right by mellin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.