Help for this page

Select Code to Download


  1. or download this
      DB<1> $x = q|<blah1 phase="2" type="MyType" more_keys="Values" <Unwa
    +nted/>  <SomeTagIwant><k1="v1"></SomeTagIwant>|;
    
    ...
      DB<4> print "$_ " for  $y =~ /type="([^"]+)".+?(\\w+?TagIwant)  | ty
    +pe="([^"]+)"/x;;
      MyType
      DB<5>
    
  2. or download this
      DB<6> $type = qr/type="([^"]+)"/;
    
    ...
    MyType SomeTagIwant
      DB<8> print "$_ " for $y  =~ /$type .+?(\w+?TagIwant) | $type /x;
      MyType