I saw your response soon after you posted it, but had to go to a meeting outside and did not have time. Coming back home, I tried a couple of things and it turns out to be more difficult than I thought.
Although this solution is far from elegant, it seems to work:
DB<1> $x = q|<blah1 phase="2" type="MyType" more_keys="Values" <Unwa
+nted/> <SomeTagIwant><k1="v1"></SomeTagIwant>|;
DB<2> $y = q|<blah1 phase="2" type="MyType" more_keys="Values" <Unwa
+nted/> <SomeTagIDontWant><k1="v1"></SomeTagIDontWant>|;
DB<3> print "$_ " for $x =~ /type="([^"]+)".+?(\w+?TagIwant) | typ
+e="([^"]+)"/x;
MyType SomeTagIwant
DB<4> print "$_ " for $y =~ /type="([^"]+)".+?(\\w+?TagIwant) | ty
+pe="([^"]+)"/x;;
MyType
DB<5>
It could be slightly improved with a named regex:
DB<6> $type = qr/type="([^"]+)"/;
DB<7> print "$_ " for $x =~ /$type .+?(\w+?TagIwant) | $type /x;
MyType SomeTagIwant
DB<8> print "$_ " for $y =~ /$type .+?(\w+?TagIwant) | $type /x;
MyType
Well, I think that
haukex's solution below looks better.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.