Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-19 15:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found