I'm using XML::Simple, and I want to use the ForceArray option to the XMLin method. ForceArray accepts three types of values: 1 (to force all nested elements to be represented as arrays), a compiled regular expression (any matching element names will be forced into an array representation), or a list of element names and/or compiled regular expressions. In my situation, I want all element names starting with an uppercase letter to be forced into an array representation, except those whose name ends with either '_Flags' or '_Info'. The follwing works just fine if I want just one of the exceptions: qr/^[A-Z].*(?<!_Flags)$/. Unfortunately, the obvious extension (qr/^[A-Z].*(?<!_(?:Flags|Info))$/) fails with the error "Variable length lookbehind not implemented in regex". I've searched for ways around this, but none of the usual work-arounds fits this situation. I've tried several other regular expressions, but none of them work.

#!/bin/perl %desired = ( Port => 1, Port_Aliases => 1, Port_Flags => undef, Port_Info => undef, name => undef, ); foreach $r ( q/^[A-Z].*(?<!_Flags)$/, q/^[A-Z].*(?!_Flags$)/, q/^[A-Z].*(?(?=_Flags)\s$|$)/, q/^[A-Z].*((?<!_Flags)|(?<!_Info))$/, q/^[A-Z].*((?!_Flags$)|($!_Info$))$/, q/^[A-Z].*((?>_(Flags|Info))\s|)$/, q/^[A-Z].*(?<!_(?:Flags|Info))$/, ) { print "\ntesting /$r/\n"; foreach (sort keys %desired) { $expected = $desired{$_}; $result = /$r/x; $msg = ($result == $expected) ? 'ok' : 'ng'; print "'$_'\t$msg, got '$result', expected '$expected' +\n"; } }

Does anyone have any ideas? Setting ForceArray to a list of names isn't really an option, as there are several hundred possibilities. Thanks!


In reply to Variable length lookbehind not implemented in regex by samwyse

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.